
Agentmail MCP
- 5 repo stars
- Updated July 14, 2026
- agentmail-to/agentmail-smithery-mcp
ai.smithery/agentmail is an MCP server that connects coding agents to the AgentMail inbox API so AI agents can send and receive email.
About
ai.smithery/agentmail is a Smithery MCP remote for AgentMail, an email inbox API built for AI agents rather than humans clicking in a webmail UI. developers shipping agent-first products—onboarding bots, support copilots, outbound research agents, or workflow automations that must receive verification links and reply in threads—register this during build/agent-tooling to expose inbox operations inside Claude Code, Cursor, or Codex. Instead of bolting together raw SMTP, DNS, and provider dashboards, you get an agent-oriented contract surfaced as MCP tools over streamable HTTP with Smithery authentication. You still own product policy: rate limits, abuse prevention, and PII handling are on your app. The server is a thin integration layer (agentmail-smithery-mcp) over the AgentMail service; pair it with your orchestration code and review before exposing inboxes to end users. It accelerates “agent has an email address” demos into something you can harden for launch.
- AgentMail inbox API designed for AI agents (send/receive email semantics)
- Smithery-hosted streamable HTTP MCP entry (v1.0.0)
- Bearer smithery_api_key required for remote auth
- Open-source bridge: agentmail-to/agentmail-smithery-mcp on GitHub
- Positioned as “Gmail-like” dedicated inboxes for agents—not human-only SMTP snippets
Agentmail MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --transport http agentmail https://server.smithery.ai/agentmail --header "Authorization: Bearer YOUR_TOKEN"Add your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 5 |
|---|---|
| Transport | HTTP |
| Auth | Required |
| Last updated | July 14, 2026 |
| Repository | agentmail-to/agentmail-smithery-mcp ↗ |
What it does
Give your product agent a real email inbox API—send, receive, and thread mail like Gmail—so workflows can sign up, verify accounts, and talk to humans over email.
Who is it for?
Best when you're creating agents that must receive magic links, answer customers, or run email-driven workflows in production-ish prototypes.
Skip if: Bulk marketing blasts, high-volume transactional mail at enterprise scale without AgentMail’s own limits, or teams that only need read-only Gmail OAuth in a browser.
What you get
Once configured, your agent stack can provision and operate agent inboxes through MCP tools backed by AgentMail instead of one-off SMTP scripts.
- MCP-accessible inbox operations for agent send/receive flows
- Faster integration of email-backed agent features in your codebase
- Documented remote endpoint for team MCP configs (server.smithery.ai/agentmail)
By the numbers
- Published server version 1.0.0
- Repository github.com/agentmail-to/agentmail-smithery-mcp
- Smithery remote URL server.smithery.ai/agentmail
README.md
Basic MCP Server
A minimal Model Context Protocol (MCP) server demonstrating tools, resources, and prompts.
Built with Smithery SDK
Prerequisites
- Smithery API key: Get yours at smithery.ai/account/api-keys
Getting Started
Install dependencies:
npm installStart development server:
npm run dev
Try the hello tool, history://hello-world resource, or greet prompt.
Development
Your code is organized as:
src/index.ts- MCP server with tools, resources, and promptssmithery.yaml- Runtime specification
Edit src/index.ts to add your own tools, resources, and prompts.
Build
npm run build
Creates bundled server in .smithery/
Deploy
Ready to deploy? Push your code to GitHub and deploy to Smithery:
Create a new repository at github.com/new
Initialize git and push to GitHub:
git add . git commit -m "Initial commit" git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO.git git push -u origin mainDeploy your server to Smithery at smithery.ai/new
Learn More
Recommended MCP Servers
How it compares
Agent inbox API over MCP, not a copywriting skill or a newsletter growth playbook.
FAQ
Who is ai.smithery/agentmail for?
Developers and small teams shipping AI agents that need dedicated email inboxes and programmatic send/receive through their coding agent environment.
When should I use ai.smithery/agentmail?
Use it while building agent features that require real email threads—sign-up flows, inbound support, or tool use that must read replies.
How do I add ai.smithery/agentmail to my agent?
Add the Smithery agentmail streamable HTTP remote in MCP settings, supply Bearer smithery_api_key, and complete any AgentMail account setup their API requires.