mcp-email

mcp-email

Self-hosted MCP server for any IMAP/SMTP inbox. Multi-account in one config. Built for Claude Code.

Category
访问服务器

README

mcp-email

Self-hosted MCP server for IMAP and SMTP. Multi-account in one config. Built for Claude Code and any MCP-compliant client.

Buy on Gumroad — $49 · Landing page · Provider config docs


What this repo is

This is the public face of mcp-email, a paid product from OneShotForge. The source code lives in the paid bundle sold on Gumroad. This repo contains:

  • The README you're reading (features, scope, FAQ)
  • The full per-provider config docs (docs/CONFIG.md)
  • The public changelog (CHANGELOG.md)
  • The license terms (LICENSE)

If you're shopping: this is enough to decide whether mcp-email fits your setup. The buy link is at the top.

If you've already purchased: the full TypeScript source, Docker setup, build configs, and complete installation guide are in the zip you received after checkout.


Why this exists

Anthropic's MCP spec lets agents talk to your tools. Email is the most-asked tool. But the existing "MCP email" servers I tried either lock you to Gmail, demand an OAuth setup that takes an afternoon, or break the moment you point them at a second account.

mcp-email is the one I built for myself after that triage. I sell it because it now solves a problem cleanly enough that I'd rather get paid to maintain it than maintain it for free.

What's different:

  • Any IMAP/SMTP provider — Gmail, Hostinger, Fastmail, iCloud, Outlook 365, Proton (via Bridge), Yahoo, Zoho, custom domains, anything that speaks the protocol.
  • Multi-account in one config — declare N accounts via env vars, every tool call takes an account argument. One server instance speaks to all of them.
  • 15 tools, prod-grade — list, search, read, threads, attachments, send, draft, move, copy, delete, flag, folder CRUD. The boring operations are covered.
  • Self-hosted, credentials never leave your box — runs locally via npm or in Docker. Bearer-token auth on the MCP endpoint. No telemetry, no SaaS proxy.
  • One .env file — no OAuth dance, no service account JSON, no Google Cloud project. Generate app passwords on the provider side, drop them in, done.

What you get when you buy

After checkout on Gumroad, you download a single zip containing:

  • Full TypeScript source for the server (Node 20+, @modelcontextprotocol/sdk, imapflow, nodemailer)
  • Dockerfile + docker-compose.yml ready to run
  • .env.example with the full template and inline comments
  • The expanded README with install instructions, Claude Code wiring, production deployment via Caddy, and troubleshooting
  • A perpetual commercial license (see LICENSE for the full terms — unlimited business use, no resale, refund within the first day if it doesn't fit)
  • Free patch and minor updates within the 1.x major version

Approximate first-tool-call time after checkout: 5 minutes if your provider's app password is already generated.


Provider matrix

I run on Hostinger and Gmail daily. Setup is documented and tested for the others.

Provider Authentication IMAP host SMTP host Notes
Hostinger Mailbox password imap.hostinger.com:993 smtp.hostinger.com:465 What I use for hello@oneshotforge.com. 10/10 on mail-tester.com.
Gmail / Workspace App password imap.gmail.com:993 smtp.gmail.com:465 Enable 2FA first. Workspace admins can disable IMAP at the org level.
Fastmail App password imap.fastmail.com:993 smtp.fastmail.com:465 Clean implementation, no surprises.
iCloud Mail App-specific password imap.mail.me.com:993 smtp.mail.me.com:587 SMTP on 587/STARTTLS.
Outlook 365 App password outlook.office365.com:993 smtp.office365.com:587 Some tenants disable SMTP AUTH. Personal accounts always work.
Proton Mail Via Proton Bridge 127.0.0.1:1143 127.0.0.1:1025 Bridge must be running locally.
Yahoo Mail App password imap.mail.yahoo.com:993 smtp.mail.yahoo.com:465 App password under account security.
Zoho Mail App password (or normal) imap.zoho.eu:993 / .com smtp.zoho.eu:465 / .com EU vs US tenants use different hosts.
Generic App password or normal depends depends Anything RFC-compliant works.

Full per-provider setup in docs/CONFIG.md.


The 15 tools

All tools take an account parameter — the ID you declared in .env. Folders default to INBOX where applicable.

Reading (6)

Tool Purpose
email_list_folders List all IMAP folders with unread counts
email_list_messages List messages in a folder with pagination and unseen filter
email_search_messages Search by sender, subject, body, date, or has-attachment
email_get_message Full message body (text + HTML + attachment metadata) by UID
email_get_attachment Fetch an attachment's content (UTF-8 or base64)
email_get_thread Reconstruct a conversation thread from Message-ID / In-Reply-To / References

Writing (2)

Tool Purpose
email_send_message Send via SMTP, append a copy to Sent folder via IMAP
email_create_draft Create a draft in the Drafts folder

Management (7)

Tool Purpose
email_move_message Move a message to another folder
email_copy_message Copy a message to another folder
email_delete_message Move to Trash (default) or \Deleted + expunge
email_mark_message Set or unset \Seen / \Flagged / \Answered flags
email_create_folder Create an IMAP folder
email_rename_folder Rename an IMAP folder
email_delete_folder Delete an IMAP folder

How it connects to Claude Code

After install (covered in the zip), add this to your project .mcp.json or ~/.claude.json global:

{
  "mcpServers": {
    "email": {
      "type": "http",
      "url": "http://localhost:3000/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_AUTH_TOKEN"
      }
    }
  }
}

Restart Claude Code (/mcp to verify the server is connected), then try:

"List my last 5 unread emails in account main."

Or, for advanced usage with multi-account:

"Search account support for unanswered messages from customer@example.com in the last 7 days, summarize them, and draft a reply in account main."


Pricing

$49 one-time. Perpetual commercial license, unlimited business use, no recurring fee.

Same-day refund if it doesn't fit your setup. Email hello@oneshotforge.com within 24 hours of buying and I'll process it (next morning if I'm asleep when you write).

Buy on Gumroad


Limits and scope (intentional)

  • Authentication: app password or plain password only. No OAuth 2.0. This keeps the server stateless and provider-agnostic.
  • Transport: HTTP only (no stdio). MCP over HTTP is the only mode that supports remote agents and shared infrastructure.
  • Folder names: defaults assume INBOX, Sent, Drafts, Trash. Servers with prefixes like INBOX.Sent are handled with a fallback. Custom names require small code changes.
  • Attachment download: 1 MB cap for binary attachments (returned as base64). Textual attachments (text/*, JSON, XML, ICS) have no cap.
  • HTML body: truncated past 25,000 characters in email_get_message. The text body is always sent in full.

Roadmap (post-1.0, not committed)

  • Optional SENT_FOLDER / DRAFTS_FOLDER / TRASH_FOLDER env overrides per account
  • OAuth flow for Gmail and Microsoft (separate add-on, not bundled)
  • Webhook on incoming mail (push-style notifications for agents)
  • Calendar/ICS bridge (separate product, will integrate cleanly)
  • AI auto-tagging via the Anthropic API

Vote with email — what do you want next? hello@oneshotforge.com.


License

Commercial license — see LICENSE.

TL;DR: unlimited personal and business use after purchase, no resale or redistribution of the source.


Support

  • Bugs and feature requests: email hello@oneshotforge.com with a clear repro.
  • License questions, volume pricing: same address.
  • Public changelog: CHANGELOG.md.

Built by OneShotForge.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选