/ Diretório / Playground / Resend MCP
● Oficial resend 🔑 Requer sua chave

Resend MCP

por resend · resend/resend-mcp

Resend's first-party MCP — send_email, create_broadcast, manage_audience as MCP tools, with HTML templating Claude can author inline.

Resend MCP exposes the Resend REST API as MCP tools. Claude can compose, preview, and send transactional emails, manage audiences and contacts, and schedule broadcasts. Pair with a humanizer skill for tone control.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

pronto

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "resend-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@resend/mcp-server"
      ],
      "env": {
        "RESEND_API_KEY": "${RESEND_API_KEY}"
      }
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "resend-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@resend/mcp-server"
      ],
      "env": {
        "RESEND_API_KEY": "${RESEND_API_KEY}"
      }
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "resend-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@resend/mcp-server"
      ],
      "env": {
        "RESEND_API_KEY": "${RESEND_API_KEY}"
      }
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "resend-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@resend/mcp-server"
      ],
      "env": {
        "RESEND_API_KEY": "${RESEND_API_KEY}"
      }
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "resend-mcp",
      "command": "npx",
      "args": [
        "-y",
        "@resend/mcp-server"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "resend-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "@resend/mcp-server"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add resend-mcp -- npx -y @resend/mcp-server

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Resend MCP

Compose and send a transactional email

👤 Developers ⏱ ~15 min intermediate

Quando usar: You drafted release notes and want to send to a single recipient before broadcasting.

Fluxo
  1. Draft
    Ask Claude to draft release notes from the git log.✓ Copiado
    → Markdown draft ready
  2. Render
    Convert to HTML; inline-style for email clients.✓ Copiado
    → HTML body ready
  3. Send
    send_email [email protected], [email protected].✓ Copiado
    → Resend returns email_id; check inbox

Resultado: Preview email landed in your inbox, ready to broadcast.

Schedule a broadcast to an audience

👤 Developers ⏱ ~15 min intermediate

Quando usar: You have a verified audience and want to send the polished version to everyone.

Fluxo
  1. Pick audience
    list_audiences; choose the right one.✓ Copiado
    → audience_id
  2. Create broadcast
    create_broadcast subject, body, audience_id, send_at.✓ Copiado
    → broadcast scheduled

Resultado: Broadcast queued in Resend; visible in dashboard.

Combinações

Combine com outros MCPs para 10× de alavancagem

resend-mcp + github

Pull the release diff, send the notes via Resend

Combine resend-mcp with github: Pull the release diff, send the notes via Resend✓ Copiado
resend-mcp + humanizer-zh-skill

Humanize the draft before sending to Chinese audiences

Combine resend-mcp with humanizer-zh-skill: Humanize the draft before sending to Chinese audiences✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
send_email (see docs) Single-recipient transactional send 1 call
create_broadcast (see docs) Schedule a broadcast to an audience 1 call
list_audiences (see docs) List audiences in your account 1 call
add_contact (see docs) Add a contact to an audience 1 call
verify_domain (see docs) Check sending-domain DNS status 1 call

Custo e limites

O que custa rodar

Cota de API
Resend free tier: 3k emails/mo, 100/day; paid plans scale
Tokens por chamada
Body length + headers
Monetário
Free tier; paid from $20/mo
Dica
Use idempotency keys; dedupe sends if Claude retries

Segurança

Permissões, segredos, alcance

Escopos mínimos: domain:send audiences:write
Armazenamento de credenciais: API key in env var
Saída de dados: api.resend.com
Nunca conceda: reuse a production key for staging — Resend supports separate keys

Solução de problemas

Erros comuns e correções

422 from address not verified

Verify domain in Resend dashboard; only verified domains may send

Broadcast stuck pending

Check audience size and rate limits; broadcasts throttle on free tier

Alternativas

Resend MCP vs. outros

AlternativaQuando usarTroca
SendGrid MCPYou're on SendGridDifferent API surface
PostmarkHigher inbox-placement focusNo first-party MCP yet

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills