Resend Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Resend Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Servidor MCP remoto (HTTPS) que dá ao Claude a ferramenta `send_email`, enviando pela API do Resend. Use nas automações (ex.: Relatório Diário de Contas a Pagar) para que o envio funcione mesmo com a sua máquina desligada.
server.js — servidor MCP (Streamable HTTP) com a ferramenta send_email.package.json, Dockerfile, .env.example, .gitignore.shiftmobilidade.com.br e crie os registros DNS (SPF, DKIM) até ficar Verified.[email protected].Veja .env.example. Em produção, configure no painel do host (não use arquivo .env):
RESEND_API_KEY (segredo)SENDER_EMAIL_ADDRESSMCP_AUTH_TOKEN (segredo — protege o endpoint)ALLOWED_RECIPIENT_DOMAINS (opcional, recomendado)cd resend-mcp-server
npm install
cp .env.example .env # preencha os valores
node --env-file=.env server.js
# Servidor em http://localhost:3000 (endpoint MCP: POST /mcp)Dockerfile).https://resend-mcp-shift.onrender.com.gcloud run deploy resend-mcp \
--source . \
--region southamerica-east1 \
--allow-unauthenticated \
--set-env-vars [email protected],ALLOWED_RECIPIENT_DOMAINS=shiftmc.com.br,shiftmobilidade.com.br \
--set-secrets RESEND_API_KEY=resend-api-key:latest,MCP_AUTH_TOKEN=mcp-auth-token:latest(crie os secrets no Secret Manager antes).
New Project → Deploy from repo → adicione as variáveis → Railway expõe uma URL HTTPS.
https://SEU-HOST/mcpAuthorization: Bearer <MCP_AUTH_TOKEN>send_email fica disponível e a automação passa a enviar pelo Resend.curl -s https://SEU-HOST/mcp \
-H "Authorization: Bearer <MCP_AUTH_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Deve retornar a ferramenta send_email.
MCP_AUTH_TOKEN impede que terceiros usem seu endpoint de envio.ALLOWED_RECIPIENT_DOMAINS evita uso indevido para enviar a domínios externos.RESEND_API_KEY e MCP_AUTH_TOKEN no secret manager do host; nunca em Git.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.