Back
Marketplace/SendGrid

TL;DR

SendGrid is a Communication MCP server that lets Claude Code, Cursor, Windsurf and any MCP-compatible AI agent send transactional and marketing email via SendGrid from AI agents through MCP. Install in 1 minute with mcpizy install sendgrid.

📬

SendGrid

4 tools Supports hosted execution →

Communication

Last updated June 1, 2026 · By MCPizy team

Send transactional and marketing email via SendGrid from AI agents through MCP.

Official homepage

Run SendGrid without any local install

Connect your SendGrid account once — MCPizy stores the credentials encrypted and uses them whenever you run a recipe in managed mode.

Checking connection…

Install SendGrid

Via MCPizy CLI (recommended):
mcpizy install sendgrid
Or run directly:
npx -y @sendgrid/mcp-server
View on GitHub

Tools exposed

4 tools available
send_email

Send email via SendGrid API

Inputs

  • tostringrequired
  • fromstringrequired
  • subjectstringrequired
  • contentstringrequired
list_templates

List dynamic email templates

send_with_template

Send an email using a dynamic template

Inputs

  • template_idstringrequired
  • tostringrequired
  • dynamic_dataobjectoptional
list_contacts

List contacts in the marketing lists

Configuration

Works identically across clients. Only the config file path differs.

Claude Code~/.claude.json
{
  "mcpServers": {
    "sendgrid": {
      "command": "npx",
      "args": [
        "-y",
        "@sendgrid/mcp-server"
      ],
      "env": {
        "SENDGRID_API_KEY": "SG...."
      }
    }
  }
}
Cursor.cursor/mcp.json
{
  "mcpServers": {
    "sendgrid": {
      "command": "npx",
      "args": [
        "-y",
        "@sendgrid/mcp-server"
      ],
      "env": {
        "SENDGRID_API_KEY": "SG...."
      }
    }
  }
}
Windsurf~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "sendgrid": {
      "command": "npx",
      "args": [
        "-y",
        "@sendgrid/mcp-server"
      ],
      "env": {
        "SENDGRID_API_KEY": "SG...."
      }
    }
  }
}

Authentication setup

  1. 1

    Create an API key with Mail Send access

    Get it SENDGRID_API_KEY

What you can do with SendGrid MCP

Paste any of these prompts into Claude Code, Cursor or another MCP-compatible client.

“Send a welcome email to [email protected] using template d-abc123”

Uses: send_with_template

“List all my dynamic templates”

Uses: list_templates

Why SendGrid MCP matters

SendGrid MCP wraps the Twilio SendGrid API v3 (api.sendgrid.com/v3/), exposing Mail Send (transactional), Marketing Campaigns, Contacts, Lists, Segments, Templates (Dynamic Templates with Handlebars), Suppressions (bounces, blocks, spam reports, unsubscribes), Event Webhooks, and the Stats API. Auth is via API Keys with granular scope permissions. Tools include mail_send, contact_upsert, list_recipients_add, segment_create (with SQL-like query syntax), template_version_create, and stats_global_get.

We use SendGrid primarily for high-volume transactional email (password resets, order confirmations, OTP delivery), event-driven notification streams, and reputation-managed marketing sends. The MCP is useful for syncing customer data from product DBs to SendGrid Contacts, programmatically creating template versions for A/B tests, pulling delivery/open/click metrics for dashboards, and managing suppression lists across IP pools. Token cost is light (200-500 tokens per mail send response). Free tier is 100 emails/day; paid plans start at $19.95/month for 50k emails.

Vs. Mailchimp, SendGrid is faster and more reliable for transactional volume but less polished for marketing creative workflows. Vs. Resend or Postmark, SendGrid has more features but feels older and the IP warm-up process is more manual. Trade-offs: SendGrid's deliverability has been historically strong but is sensitive to shared-IP neighbor reputation on lower plans (dedicated IPs cost $80+/month), and the v3 API has inconsistent naming conventions across modules.

Common pitfalls

Dynamic template substitutions silently fail if your Handlebars variable name has a typo or wrong nesting — the rendered email will show the raw {{variable}} or be empty. Always test with template_test endpoint before bulk send.

Suppression groups (unsubscribe groups) are separate from global unsubscribes — a contact can be suppressed at group level but still receive emails from other groups. This is intentional but causes "why is this user still receiving emails?" tickets.

The Event Webhook delivers events out of order and may duplicate — always dedupe by sg_event_id and use the timestamp for ordering. Single sends >10k emails can take 30-60 minutes for full event delivery.

Marketing Campaigns API and Mail Send API have different contact addressing models (Marketing uses Lists, Mail Send uses inline recipients) — switching between them mid-pipeline is a common confusion.

How SendGrid MCP compares

Honest pros/cons against the closest communication MCP servers.

ServerStrengthsTrade-offs
Resend MCPModern developer-first API, cleaner SDK, better React Email support, simpler pricingYounger product, smaller deliverability track record, fewer advanced segmentation features
Postmark MCPBest-in-class transactional deliverability, separate transactional/marketing streams, fast supportPricier per email at scale, weaker marketing/journey features, smaller template ecosystem
Amazon SESCheapest per email ($0.10/1000), AWS-native integration, virtually unlimited scaleBare-bones API, you build templates/segments/analytics yourself, deliverability requires manual reputation management

Works with

Claude Code
Claude Desktop
Cursor
Windsurf
VS Code + Copilot
Any MCP Client

More Communication MCPs

📱

iMessage

Query and analyze iMessage conversations

💬

Mattermost

Messaging and channel management

📲

WhatsApp

WhatsApp messaging via Business API

📧

Email (IMAP)

IMAP/SMTP email with 42 tools for inbox management

Alternatives to SendGrid

If SendGrid doesn't fit your stack, these Communication MCP servers solve similar problems.

✈️

Telegram

Telegram API for dialogs and messages

🎮

Discord

Discord bot integration for servers and channels

🗣️

Discourse

Forum integration and community management

Key Takeaways

  • SendGrid exposes 4 tools for communication workflows in Claude Code, Cursor and Windsurf.
  • Authentication: 1 step (SENDGRID_API_KEY).
  • Install in 1 command: mcpizy install sendgrid — config written to your client automatically.
  • Free and open source (GitHub source linked above) — verified compatible with every MCP client (Claude Code, Claude Desktop, Cursor, Windsurf, VS Code + Copilot).
  • Best use case: "Send a welcome email to [email protected] using template d-abc123".

Frequently asked questions

What is the SendGrid MCP server?

The SendGrid MCP server is an Communication Model Context Protocol server that lets Claude Code, Cursor, Windsurf, VS Code with Copilot, and other MCP-compatible AI agents send transactional and marketing email via SendGrid from AI agents through MCP. It exposes SendGrid's capabilities as tools the AI can call directly from your editor or CLI.

How do I install SendGrid MCP with Claude Code?

The fastest way is the MCPizy CLI: run `mcpizy install sendgrid` and MCPizy will add the server to your `.claude.json` automatically. You can also install it manually by adding an entry under `mcpServers` in `.claude.json` with the command `npx -y @sendgrid/mcp-server` and restarting Claude Code.

Is SendGrid MCP free?

Yes. The SendGrid MCP server is free and open source (see the GitHub repository linked on this page). You may still need a SendGrid account or API key to connect the server to the underlying service, but the MCP layer itself has no MCPizy subscription cost.

Does SendGrid MCP work with Cursor and Windsurf?

Yes. Any MCP-compatible client works — including Claude Code, Claude Desktop, Cursor (via `.cursor/mcp.json`), Windsurf, VS Code with Copilot Chat, and custom agents built on the MCP SDK. The same install command targets all of them; only the config file path differs.

What can I do with SendGrid MCP?

Once installed, your AI agent can send transactional and marketing email via SendGrid from AI agents through MCP directly inside your conversation. Typical use cases include asking Claude Code or Cursor to run SendGrid operations, inspect results, chain SendGrid with other MCP servers (see our Workflow Recipes), and automate repetitive communication tasks without leaving your editor.

Manage all your MCPs in one place

Monitor usage, track costs, and discover new MCPs.

Get Started Free