An email MCP is a Model Context Protocol server that lets AI agents send email and run a marketing platform through typed tool calls, not a dashboard.
An email MCP (Model Context Protocol) server is a server that exposes email-platform capabilities as typed tools an AI agent can discover and call. Instead of the agent scraping a dashboard or parsing screenshots, it sees a clean list of tools like `send_message`, `compose_campaign`, or `search_contacts`, calls them with structured arguments, and gets structured responses back.
MCP is the open standard Anthropic released in late 2024 for connecting AI agents to external systems. An email MCP is a specific application of MCP focused on email: transactional, marketing, or both.
Every email platform before MCP was designed for humans clicking buttons. Agents had to automate browsers (fragile, slow) or call REST APIs (works, but agents have to read long API docs instead of a typed tool list). MCP gives the agent a typed, introspectable surface that's faster and more reliable to call than either approach.
Practical outcome: an agent can book, draft, test, and send a campaign in a single conversation, without switching tabs and without you teaching it how your ESP's UI works.
Full product surface, not just send. A send-only MCP is fine for transactional. For marketing, the agent also needs to compose campaigns, build flows, manage audiences, segment, and review deliverability.
OAuth auth. Shell history should never hold API keys. Remote HTTP MCP with OAuth (Claude, Cursor, Codex, Gemini, ChatGPT Dev Mode) is the current standard.
Account-aware resources. An agent should be able to read your brand settings, sending domains, and current plan before it writes a campaign. MCP exposes this via the resources concept.
Idempotency on write operations. Agents occasionally retry. Every tool that creates or sends should accept an idempotency key.
nitrosend ships a 21-tool MCP server at `https://api.nitrosend.com/mcp`. Tools cover transactional send, campaign composition, flow building, segments, contacts, templates, domain verification, deliverability review, billing, and support.
Install with one command. For Claude Code: `claude mcp add --transport http nitrosend https://api.nitrosend.com/mcp`. For Cursor, Codex, ChatGPT, Gemini, Windsurf, VS Code, and Zed: see the per-client setup in the integrations hub.
Full reference: email MCP server.
An email REST API requires the client (including an AI agent) to read documentation and craft HTTP requests. An email MCP exposes the same operations as typed tools the agent can discover at runtime, with schema, descriptions, and structured errors. Both work; MCP is faster and safer for agents.
No. As of April 2026, Resend ships a send-focused MCP, nitrosend ships a 21-tool full-surface MCP, and most others ship none.
Yes. The MCP spec is open. You'd wrap an existing provider's REST API (or your own SMTP stack) in MCP tool handlers using one of the MCP SDKs (TypeScript, Python, Ruby). nitrosend open-sourced the bridge pattern in @nitrosend/mcp.
It's the interface, not the platform. You still need a platform (templates, analytics, deliverability) under it. nitrosend is a platform with a first-party MCP. Other platforms can be wrapped in third-party MCP bridges.