sendgrid-mcp-secure
Provides tools for sending transactional emails via SendGrid v3 API, including preview and two-phase send with confirm tokens, suppression list management, template retrieval, email stats, and domain authentication verification.
sendgrid-mcp-secure
A security-first MCP server for the SendGrid v3 API.
Email is an irreversible, reputation-bearing action. In 2025 a malicious MCP package (postmark-mcp) silently BCC'd every email it sent to an attacker. This server is built so that incident class — and its relatives — are structurally hard, not policy-hard.
Security model
Two-phase sends. There is no direct-send tool.
preview_emailvalidates and renders the exact payload, returns it for inspection, and mints a single-use confirm token (10-minute expiry).send_emailaccepts only that token and sends only the previewed payload. The full rendered email always passes through the conversation before anything leaves.Dry-run by default. Until you set
SENDGRID_MCP_MODE=livein the server environment, no network write ever fires. Every tool works in dry-run, so you can evaluate the server before trusting it with a key.No BCC. Not accepted as an argument, off by default at the server layer. BCC injection was the postmark-mcp exfiltration channel.
Recipient allowlist (optional). Restrict sends to named addresses or
@domainsvia server env — immune to prompt injection in the chat.Write rate limit. Token bucket, default 20 write-actions per hour.
Audit log. Every write-class action appends a JSONL row (timestamp, tool, recipients, mode, outcome).
Key isolation. The API key comes from the environment only. No tool accepts, returns, or logs it.
One file, one dependency. The whole server is
server.py; the only third-party dependency is the officialmcpSDK. Audit it in one read.
Related MCP server: gmail-mcp
How this differs from other SendGrid MCP servers
Several SendGrid MCP servers exist. They solve different problems:
Marketing servers manage contacts, lists, templates, and campaigns. Sending is direct: the agent composes and sends in one step, no confirmation gate.
Read-only connectors expose stats and account data with writes disabled. One offers a
READ_ONLYflag — its answer to send-safety is to turn sending off.This server is for transactional sends you can safely leave enabled. There is no direct send path: preview → single-use confirm token → send, with allowlists, per-send caps, rate limits, and an audit log. BCC does not exist.
If you want campaign management, use a marketing server. If you want an agent that can send email without you holding your breath, that is this.
Tools (11)
Tool | Class | Notes |
| write-gated | validates + renders + mints confirm token |
| write | takes ONLY a confirm token |
| write | safe direction — stops future sends |
| write | dangerous direction — requires |
| read | dynamic + legacy templates |
| read | delivery/opens/clicks/bounces |
| read | all five suppression lists |
| read | domain authentication validity |
| read | live security posture of this server |
Install
Claude Desktop / Claude Code / Cursor (via uv):
{
"mcpServers": {
"sendgrid": {
"command": "uvx",
"args": ["sendgrid-mcp-secure"],
"env": {
"SENDGRID_API_KEY": "SG.your-key",
"SENDGRID_MCP_MODE": "dry-run"
}
}
}
}Start in dry-run (the default). Watch the audit log and the rendered
previews. Flip to live when you have seen what it does.
Or run from a clone: python3 server.py (stdio transport).
Configuration
Env var | Default | Meaning |
| — | required for live mode |
|
|
|
| any | comma list: emails and/or |
| 10 | per-send cap (to + cc) |
| off |
|
| 20 | write-action rate limit |
|
| append-only audit |
Use a SendGrid API key with restricted scopes (Mail Send + read scopes you need). The server never needs Full Access.
Verify before you trust
The self-test runs offline — no key, no network:
python3 test_server.py32 checks: golden fixtures on payload construction, adversarial fixtures on the exact failure modes this server exists to prevent (blind sends, allowlist bypass, token replay, forged tokens, rate-limit exhaustion, BCC injection), and an end-to-end preview→send flow over the real tool functions.
Output contract: every tool returns a JSON object; failures return
{"error": "..."} instead of raising, so agent loops degrade gracefully.
Honest limits
The confirm token returns to the calling model, so two-phase sending is defense-in-depth, not a human-approval gate by itself. Pair it with your client's per-tool approval (each
send_emailcall is separately visible and approvable) and the allowlist for the strongest posture.Marketing API (contacts, lists, campaigns) is out of scope — this server covers transactional mail, templates, suppressions, stats, and domain auth.
SendGrid's API evolves; endpoints verified against the v3 docs at release.
MIT license.
Contact
Questions, bug reports, security issues: open a GitHub issue or email heychopp@proton.me. Security reports welcome by email first.
Maintenance
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that enables AI applications to send text, HTML, and template-based emails using SendGrid. It supports file attachments, CC/BCC recipients, and easy deployment via Python or Docker.
- Alicense-qualityAmaintenanceGmail MCP server — scope-gated tools (readonly / send / modify), path jails for attachments + downloads, hardened OAuth credentials, Sigstore-signed releases.22611MIT
- AlicenseAqualityDmaintenanceThis MCP server enables LLMs to POST, GET, and DELETE cron jobs that schedule email sends via SendGrid.41MIT
- AlicenseAqualityAmaintenanceAn MCP server that gives AI agents permission-gated, audit-logged access to private email providers (Proton Mail via Bridge and plain IMAP), running locally with OAuth-based authentication and human-controlled escalation for destructive operations.665259MIT
Related MCP Connectors
send-that-email MCP — wraps StupidAPIs (requires X-API-Key)
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
Send transactional email over a verified domain — templates, attachments, custom headers.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Choppaaahh/sendgrid-mcp-secure'
If you have feedback or need assistance with the MCP directory API, please join our Discord server