
Research
/Security News
Popular Rust Crates Compromised in Build-Time Supply Chain Attack
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.
sendgrid-mcp-secure
Advanced tools
Security-first MCP server for the SendGrid v3 API: two-phase sends, dry-run by default, recipient allowlists, rate limits, audit log, no BCC.
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.
preview_email
validates and renders the exact payload, returns it for inspection, and
mints a single-use confirm token (10-minute expiry). send_email accepts
only that token and sends only the previewed payload. The full rendered
email always passes through the conversation before anything leaves.SENDGRID_MCP_MODE=live in 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.@domains via server env — immune to prompt injection in the chat.server.py; the only
third-party dependency is the official mcp SDK. Audit it in one read.Several SendGrid MCP servers exist. They solve different problems:
READ_ONLY flag — its answer to send-safety is
to turn sending off.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.
| Tool | Class | Notes |
|---|---|---|
preview_email | write-gated | validates + renders + mints confirm token |
send_email | write | takes ONLY a confirm token |
add_suppression | write | safe direction — stops future sends |
remove_suppression | write | dangerous direction — requires confirm=true |
list_templates / get_template | read | dynamic + legacy templates |
get_email_stats | read | delivery/opens/clicks/bounces |
list_suppressions / check_suppression | read | all five suppression lists |
get_domain_auth | read | domain authentication validity |
server_status | read | live security posture of this server |
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).
| Env var | Default | Meaning |
|---|---|---|
SENDGRID_API_KEY | — | required for live mode |
SENDGRID_MCP_MODE | dry-run | dry-run or live |
SENDGRID_MCP_RECIPIENT_ALLOWLIST | any | comma list: emails and/or @domains |
SENDGRID_MCP_MAX_RECIPIENTS | 10 | per-send cap (to + cc) |
SENDGRID_MCP_ALLOW_BCC | off | 1 to allow (not recommended) |
SENDGRID_MCP_WRITES_PER_HOUR | 20 | write-action rate limit |
SENDGRID_MCP_AUDIT_LOG | ~/.sendgrid-mcp/audit.jsonl | append-only audit |
Use a SendGrid API key with restricted scopes (Mail Send + read scopes you need). The server never needs Full Access.
The self-test runs offline — no key, no network:
python3 test_server.py
32 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.
send_email call is separately visible
and approvable) and the allowlist for the strongest posture.MIT license.
Questions, bug reports, security issues: open a GitHub issue or email heychopp@proton.me. Security reports welcome by email first.
FAQs
Security-first MCP server for the SendGrid v3 API: two-phase sends, dry-run by default, recipient allowlists, rate limits, audit log, no BCC.
We found that sendgrid-mcp-secure demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.