mail-mcp
A generic IMAP and SMTP MCP server that enables AI agents to interact with email accounts for reading, searching, and sending messages. It provides high-level tools for managing email workflows like daily digests and folder organization across any standard email provider.
README
mail-mcp
Generic IMAP+SMTP MCP server for AI agents — v0.2.0
Connect any email account to any AI agent (Claude, Gemini, Codex, Copilot, Vibe…). Intent-first design: high-level tools matching real user workflows, backed by a clean IMAP/SMTP core and a full triple admin surface (CLI + HTTP + Telegram).
Problem: AI agents have no native email access.
Why: IMAP+SMTP are universal, server-agnostic, no OAuth2 dance required.
How: FastMCP tools layer, pure stdlib SMTP, imapclient for IMAP, bw-env secrets.
Admin: mail-admin CLI + /admin/* HTTP routes + Telegram bot + SSH exec.
Architecture
mail_mcp/
├── config.yaml # Non-sensitive settings (hosts, ports, env var names)
├── config.py # @lru_cache loader + 3-tier secret resolution + admin env
│
├── admin/
│ ├── service.py # Shared backend: status, credentials CRUD, logs, summaries
│ ├── cli.py # mail-admin — Typer+Rich admin CLI
│ └── telegram.py # Telegram long-poll bot (in-process thread)
│
├── core/
│ ├── models.py # Pydantic: Message, MessageSummary, Folder, Address…
│ ├── imap_client.py # IMAPClient context-manager — search, fetch, flags, move
│ └── smtp_client.py # SMTPClient — send, reply, forward, draft
│
├── tools/
│ ├── guide.py # mail_guide() — agent orientation entry point
│ ├── read.py # check_inbox, daily_digest, search_messages, get_thread…
│ ├── compose.py # send_message, reply_message, forward_message, save_draft
│ └── manage.py # list_folders, mark_messages, move/archive/delete/spam
│
├── server.py # FastMCP root — mounts all sub-MCPs
├── http_app.py # Starlette app: MCP + /health + /admin/* routes
├── daemon.py # PID file lifecycle
└── cli.py # Typer CLI: serve, serve-http, stop, status, inbox, folders
Secret resolution (3 tiers)
1. Admin env file → /data/mail-admin.env (Docker volume, persistent credential overrides)
2. Process env → fastest (shell injection or MCP host)
3. bw-env login → zsh -l -c 'printf "%s" "${VAR}"' (Bitwarden GLOBAL_ENV_VARS)
Transports
| Transport | URL / Command | Description |
|---|---|---|
| HTTP (homelab) | https://mail.kpihx-labs.com/mcp |
Streamable-HTTP — production, always-on |
| stdio (fallback) | mail-mcp serve |
Direct process — local dev or when HTTP down |
Supported accounts
| Account | IMAP | SMTP | Server |
|---|---|---|---|
| Polytechnique (X) | webmail.polytechnique.fr:993 TLS |
:587 STARTTLS |
Zimbra |
More accounts: add an entry in config.yaml — no code change needed.
Quick start
# Install (editable for live dev)
uv tool install --editable .
# Admin CLI
mail-admin status # credential status table
mail-admin logs 20 # last 20 log lines
mail-admin credentials set poly <login> <pass> # live update without restart
mail-admin help # full capability map
# MCP stdio server
mail-mcp serve
# MCP HTTP server (port 8094)
mail-mcp serve-http
Admin surfaces
1. CLI — mail-admin
mail-admin status [--account <id>] # Rich table: env var, value (masked), source
mail-admin logs [N] # tail last N lines (default 40)
mail-admin credentials set <id> <login> <pass>
mail-admin credentials unset <id>
mail-admin help # full capability map
2. HTTP routes
| Route | Method | Description |
|---|---|---|
/health |
GET | Readiness probe — auth presence per account |
/admin/status |
GET | Full status: pid, transport, Telegram runtime, credentials |
/admin/help |
GET | Full capability map (CLI / HTTP / Telegram / SSH) |
/admin/logs?lines=40 |
GET | Tail of the admin log |
/admin/credentials/set |
POST | Set {account_id, login, password} |
/admin/credentials/unset |
POST | Clear credentials for {account_id} |
/mcp |
GET/POST | Streamable-HTTP MCP transport |
3. Telegram bot
Token env: TELEGRAM_MAIL_HOMELAB_TOKEN — auth gate: TELEGRAM_CHAT_IDS
| Command | Args | Effect |
|---|---|---|
/start /help |
— | Full capability map |
/status |
[account_id] |
Credential status |
/health |
— | Quick health summary |
/urls |
— | Transport URLs |
/logs |
[N] |
Last N log lines |
/credentials_set |
<id> <login> <pass> |
Live credential update |
/credentials_unset |
<id> |
Clear credentials |
/restart |
— | Graceful service restart |
4. SSH exec
docker compose exec -T mail-mcp mail-admin status
docker compose logs --tail=100 mail-mcp
MCP agent registration
Claude Code (~/.claude.json)
"mail-mcp": {
"url": "https://mail.kpihx-labs.com/mcp"
},
"mail-mcp--fallback": {
"command": "zsh",
"args": ["-l", "-c", "/home/kpihx/.local/bin/mail-mcp serve"]
}
Codex (~/.codex/config.toml)
[mcp_servers.mail_mcp]
url = "https://mail.kpihx-labs.com/mcp"
[mcp_servers.mail_mcp_fallback]
command = "zsh"
args = ["-l", "-c", "/home/kpihx/.local/bin/mail-mcp serve"]
Vibe/Mistral (~/.vibe/config.toml)
[[mcp_servers]]
name = "mail"
transport = "http"
url = "https://mail.kpihx-labs.com/mcp"
[[mcp_servers]]
name = "mail_fallback"
transport = "stdio"
command = "zsh"
args = ["-l", "-c", "/home/kpihx/.local/bin/mail-mcp serve"]
Gemini (~/.gemini/settings.json)
"mcpServers": {
"mail-mcp": { "url": "https://mail.kpihx-labs.com/mcp" },
"mail-mcp--fallback": {
"command": "zsh",
"args": ["-l", "-c", "/home/kpihx/.local/bin/mail-mcp serve"]
}
}
Tool reference
| Tool | Intent |
|---|---|
mail_guide |
Agent orientation — start here |
check_inbox |
Unread count + last N summaries |
daily_digest |
Structured morning overview |
list_messages |
Browse a folder |
get_message |
Full body by UID |
search_messages |
Flexible search (query, sender, date, flags) |
find_unread |
Unread shortcut |
get_thread |
Full thread by Message-ID |
send_message |
New email |
reply_message |
Reply by UID |
forward_message |
Forward by UID |
save_draft |
Draft to Drafts folder |
list_folders |
All IMAP folders |
list_labels |
Alias for list_folders |
create_folder |
Create IMAP folder |
rename_folder |
Rename IMAP folder |
delete_folder |
Delete IMAP folder |
mark_messages |
Seen / flagged / answered flags |
move_messages |
Move UIDs to folder |
archive_messages |
Move to Archive |
trash_messages |
Move to Trash |
delete_messages |
Permanent delete + expunge |
mark_as_spam |
Move to Spam/Junk |
download_attachment |
Download to file (default) or ingest as Base64 (ingest_base64=True) |
set_labels |
Alias for move_messages |
Security
- Credentials are never stored in
config.yaml— only env var names. - Secrets live in Bitwarden (
GLOBAL_ENV_VARS) and are injected viabw-env/ login shell. - Admin credential overrides persist in
/data/mail-admin.env(Docker volume) — never committed. - No OAuth2, no refresh token storage — IMAP password auth via TLS only.
Deployment (Docker / homelab)
See deploy/ for docker-compose.yml and .env.example.
# Required env vars
X_LOGIN=your_imap_username
X_PASS=your_imap_password
TELEGRAM_MAIL_HOMELAB_TOKEN=<bot_token> # optional
TELEGRAM_CHAT_IDS=<comma,separated,ids> # optional
MAIL_MCP_ADMIN_ENV_FILE=/data/mail-admin.env
GitLab CI auto-deploys master to the homelab runner via docker compose up -d --build.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。