EmailwithMCP

Updated September 4, 2026

MCP Enabled Email Providers

Every verified email MCP server in one place: hosted agent inboxes, official vendor servers, email marketing platforms, and community servers, so your AI agent can read, search, and send email natively.

The quick answer

If you want an agent in your email today, your shortest paths are:

Official MCP servers from email vendors

First-party servers are built and maintained by the vendor. They use official APIs, support OAuth where the provider offers it, and are the safest default when one exists for your stack.

Microsoft 365 Agents MCP

github.com/microsoft/mcp · 3,600+ stars · official

Microsoft's catalog of official MCP servers includes Microsoft 365 integration through Microsoft Graph. An agent connected to it can read and send Outlook mail, search the mailbox, and work with calendar and contacts alongside email. If your email lives in Microsoft 365, this is the most production-grade option on this page.

Resend: transactional email

github.com/resend/resend-mcp · 565+ stars · official

Resend ships the official MCP server for sending email and interacting with your Resend account: send transactional messages, manage audiences, and trigger broadcasts. It is the reference example of a send-only email MCP server. The agent can deliver mail but never touch your personal inbox, which makes it the lowest-risk way to let an agent send on your behalf.

Twilio (SendGrid): full API surface

github.com/twilio-labs/mcp · 109+ stars · official (Twilio Labs)

Twilio Labs exposes all of Twilio's APIs as MCP tools, which includes SendGrid's transactional email endpoints. It's generated from OpenAPI specs rather than hand-curated for email, so the tool surface is broad: expect your agent to see many non-email tools alongside the SendGrid ones.

What about Gmail? As of September 2026 there is no verified first-party Gmail MCP server from Google. Move the agent to a hosted agent inbox below, or use a community MCP server to connect an existing Gmail mailbox.

Hosted agent inboxes

Email as a service for agents: these providers run the mailbox for you and expose it over MCP at a URL. You point your agent at the endpoint with an API key, and the service handles the mailbox, deliverability, and safety rails. For new agent workflows, this is the default worth starting from.

Hosted agent inbox services with MCP support
ServiceMCP connectionNotes
AgentMail
agentmail.to
Hosted endpoint (OAuth or API key), or npx agentmail-mcpInbox API built for agents: create inboxes, send, reply, forward, search, label. Webhooks for inbound mail. Free tier: 3 inboxes, 3,000 emails/month.
DevInbox
devinbox.io
Hosted endpoint, Bearer API keycreate_inbox, wait_for_email, send_email, plus deterministic {{variable}} extraction templates. Free tier: 3 inboxes, 1,000 emails/month.
Mailerati
mcp.mailerati.com
Hosted endpointAgent-Only email provider. Personal & Business. get_status, read_email, reply_to_email, draft_new_email (drafts held for your review), ask_user_question. Free + paid plans.
Mailtrap
mailtrap.io
Official MCP serverDrives its email testing sandbox: captures outbound mail for inspection so you can test what your agent sends.

How to choose: AgentMail and DevInbox provision programmatic inboxes on demand, which suits agents that create addresses, receive verification mail, and reply as part of a workflow. Mailerati is an agent-only email provider for personal and business use, with drafts held for your review before anything sends. Mailtrap catches outbound mail in a sandbox for testing before it reaches a real customer.

Email marketing providers with MCP access

Most major email marketing platforms now ship official MCP servers. An agent connected to one can pull campaign metrics, build segments from real customer data, manage contacts, and draft sends from inside the conversation.

Email marketing platforms with MCP access
ProviderMCP connectionNotes
Brevo
developers.brevo.com/docs/mcp-protocol
Official hosted endpointCampaign performance insights, adding contacts, and sales pipeline queries in natural language. Runs on your existing plan.
Customer.io
customer.io
Official hosted endpointBuilds segments from real attributes and behavior, inspects customer profiles, and searches the workspace.
Kit
kit.com/ai/mcp
Official hosted endpointAnswers email-marketing questions and takes action in your Kit account in-conversation.
Mailgun
github.com/mailgun/mailgun-mcp-server
Official local server: npx @mailgun/mcp-server50+ operations: sending, domains, analytics, templates, suppressions, mailing lists. API key passed as an env var, never exposed to the model.
MailerLite
developers.mailerlite.com/mcp
Official hosted endpointConnects Claude, Cursor, and VS Code to your MailerLite account. Free to set up.
ActiveCampaign
activecampaign.com/platform/ai-mcp
Official hosted endpoint (URL from Settings → Developer)Connect from your AI client's server list and approve the connection.
Mailchimp
mandrillapp.com/mcp
Official for Transactional (Mandrill) onlySend and diagnostics for transactional mail. The marketing platform (campaigns, audiences) is covered by community servers.

Scope each API key to the smallest permission group the task needs, and keep a human approving campaign sends: a server with send tools can email your whole list as you.

Community email MCP servers

Open-source MCP servers built by the community to connect agents to existing mailboxes: Gmail, Fastmail, Proton Mail, Thunderbird, Apple Mail, and self-hosted. They're the fallback when your mail has to stay in an existing account, and they're maintained by volunteers: check recent commit activity before trusting one with credentials.

Community email MCP servers, by adoption
ServerWorks withNotes
mcp-email-server
Wh1isper · 320+ stars
Gmail, Fastmail, Proton, most providersFull-featured, multi-account. The default pick for Gmail and most providers.
thunderbird-mcp
TKasperczyk · 300+ stars
Thunderbird local mailEmail, contacts, and calendar from a running Thunderbird instance.
saasmail
choyiny · 240+ stars
Self-hostedEmail server for SaaS teams on Cloudflare Workers with WebMCP support.
apple-mail-mcp
patrickfreyer · 200+ stars
Apple Mail (macOS)Read, search, and send through your local Apple Mail library.
jmap-mcp
wyattjoh · 175+ stars
Fastmail and other JMAP providersConnects agents to JMAP mailboxes.
fastmail-mcp
MadLlama25 · 125+ stars
FastmailUnofficial Fastmail server: email, contacts, calendar.
email-mcp
codefuturist · 105+ stars
Gmail, Fastmail, Proton, most providersRead, search, send, manage: a solid single-account alternative.

Connecting an email MCP server

Every MCP-compatible agent (Claude, ChatGPT, Cursor, Copilot, or your own) takes a server config. Three real examples:

Hosted inbox (remote URL, nothing to install)

{
  "mcpServers": {
    "mailerati": {
      "url": "https://mcp.mailerati.com",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

Resend (official, send-only)

{
  "mcpServers": {
    "resend": {
      "command": "npx",
      "args": ["-y", "resend-mcp"],
      "env": { "RESEND_API_KEY": "re_xxx" }
    }
  }
}

Mailgun (official, runs locally)

{
  "mcpServers": {
    "mailgun": {
      "command": "npx",
      "args": ["-y", "@mailgun/mcp-server"],
      "env": { "MAILGUN_API_KEY": "your-key", "MAILGUN_API_REGION": "us" }
    }
  }
}

Safety checklist

FAQ

What is an MCP-enabled email provider?
One that exposes email (reading, searching, sending, replying) through an MCP server, so any MCP-compatible AI agent can work with it natively instead of through custom API code.
Does Gmail have an official MCP server?
No verified first-party server exists as of September 2026. Move the agent to a hosted inbox, or use a community MCP server to connect an existing mailbox.
What is a hosted agent inbox?
A service that runs mailboxes for agents and exposes them over MCP at a URL. Your agent connects with an API key instead of credentials for your personal account. AgentMail and DevInbox provision inboxes on demand; Mailerati runs a single reviewed mailbox.
How do I connect an email MCP server to my agent?
Add the server to your agent's MCP config with its command or URL and credentials. See the setup section above for copy-paste examples.
Is it safe to give an AI agent access to my email?
Treat the server like a mailbox credential: prefer OAuth, prefer send-only servers for transactional work, and keep a human approving outbound drafts.
What's the difference between official and community servers?
Official servers are maintained by the vendor (Microsoft, Resend, Twilio). Community servers are volunteer-built, connect agents to existing mailboxes, and work across many providers.
Which email marketing platforms have MCP servers?
Brevo, Customer.io, Kit, Mailgun, MailerLite, and ActiveCampaign all ship official MCP servers. Mailchimp has an official server for its Transactional (Mandrill) product; the marketing platform itself is covered by community servers.