MCP servers that can send an email
3 verified servers expose a tool that can send an email
An email send is one tool call: a recipient, a subject, a body, and the call almost always returns success. Whether the mail reaches an inbox, and whether it should have gone at all, is decided somewhere else.
The servers below have a genuine email-send tool, as opposed to a chat tool that happens to use the word message.
Resend
Resend
Resend's official MCP server lets agents send, schedule, and manage email plus contacts, broadcasts, and domains.
send-email
Resend's send-email takes HTML or text, attachments, and CC/BCC in one call, the most direct way to get an agent sending transactional mail.
Postmark
Postmark (ActiveCampaign)
Postmark's official MCP server lets agents send transactional email, send templated email, list templates, and read delivery stats.
sendEmailsendEmailWithTemplate
Postmark splits raw sends from templated ones: sendEmail for a one-off, sendEmailWithTemplate when the layout is fixed and only the data changes.
Mailgun
Mailgun (Sinch)
Mailgun's official open-source MCP server lets agents send email and inspect deliverability, domains, suppressions, analytics, and more.
post-v3-domain-name-messages
From the email vendor itself: Mailgun's server is read-only except for a single write, post-v3-domain-name-messages, which sends a message through a domain you have already verified with Mailgun.
What to know
Deliverability is the first thing that bites. A message only reaches the inbox if it comes from a verified sending domain with SPF and DKIM set up; skip that and your agent's mail goes to spam or nowhere. The second thing is confirmation. Email is irreversible and reaches real people, so a hallucinated address should not be able to ship real mail, which means a check before send rather than after.
Then there is knowing what already went out. An agent that sends a follow-up, forgets, and sends it again has done something worse than waste tokens. Whether this person was already emailed is a fact worth holding onto between sessions, not rediscovering by accident.
Questions
- Why are chat servers not on this list?
- Because sending email is narrower than sending a message. Plenty of servers have a send_message tool, but that posts to a chat, not an inbox. The picks here are the dedicated email servers; a tool that shares the verb but lands in a chat is a different job.
- Will an agent's email actually reach the inbox?
- Only if the sending domain is set up correctly. SPF and DKIM records on a verified domain are what keep the mail out of spam; without them, deliverability falls apart no matter which server you use. The MCP tool sends the request, but inbox placement is decided by your domain configuration, not the agent.