🤖 MCP server for Apple Mail - Manage emails with AI using Claude Desktop. Search, send, organize mail with natural language.
MCPpedia last refreshed this data
This server has been archived and is no longer actively maintained.
Apple Mail Fast MCP is an MCP server that 🤖 MCP server for Apple Mail - Manage emails with AI using Claude Desktop. Search, send, organize mail with natural language. Its tool list has not been published yet over stdio and sse, requires no API key, and scores 56/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"apple-mail": {
"command": "/path/to/apple-mail-fast-mcp/.venv/bin/apple-mail-fast-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that provides programmatic access to Apple Mail, enabling AI assistants like Claude to read, send, search, and manage emails on macOS.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / communication
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
The official MCP server implementation for the Perplexity API Platform
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Apple Mail Fast Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that provides programmatic access to Apple Mail, enabling AI assistants like Claude to read, send, search, and manage emails on macOS.
⚠️ Pre-1.0 — expect breaking changes. The MCP tool surface (tool names, parameters, return shapes) is still evolving as the project matures. Pin to a specific version (for example,
apple-mail-fast-mcp==0.10.2) and review the CHANGELOG before upgrading.
Grouped by lifecycle (11 read-only, 14 mutating):
list_accounts, list_mailboxes, list_rules, list_templates: enumerate what's configured (no external cache — call per account).search_messages, get_messages, get_thread, get_statistics, get_attachment_content, get_template, render_template: read messages/threads, aggregate inbox stats, pull an attachment's content inline, and render templates.update_message (read/flag/move in one pass), delete_messages (→ Trash), save_attachments (to disk, byte-capped).create_draft (new / reply / forward, optionally send_now), update_draft, delete_draft.create_mailbox, update_mailbox (rename or move), delete_mailbox.create_rule, update_rule, delete_rule.save_template, delete_template.Destructive operations (delete_*, create_rule with move/forward/delete actions, create_draft with send_now=true) prompt for confirmation via MCP elicitation. See docs/reference/TOOLS.md for full parameters and return shapes.
.mcpb)The lowest-friction path for Claude Desktop: grab the apple-mail-fast-mcp-<version>.mcpb
bundle from the Releases
page and open it (or drag it into Settings → Extensions). Claude Desktop manages Python
and dependencies for you via uv — no manual venv, no config JSON to hand-edit. macOS only.
To build the bundle yourself: ./scripts/build-mcpb.sh → dist/apple-mail-fast-mcp-<version>.mcpb
(requires Node for the mcpb packer).
One command in Claude Code, no config JSON:
/plugin marketplace add s-morgan-jeffries/apple-mail-fast-mcp
/plugin install apple-mail-fast@apple-mail-fast-mcp
Claude Code launches the server via uv run from the plugin directory (resolves dependencies
from the bundled pyproject.toml/uv.lock — no PyPI needed), so you only need uv installed.
macOS only. See docs/reference/TOOLS.md for IMAP setup and the
read/write split.
Published on PyPI:
uvx apple-mail-fast-mcp # zero-install, run on demand
pip install apple-mail-fast-mcp # or install the console script
Then point your MCP client at it — the config is a one-liner (no absolute paths):
{
"mcpServers": {
"apple-mail": { "command": "uvx", "args": ["apple-mail-fast-mcp"] }
}
}
git clone https://github.com/s-morgan-jeffries/apple-mail-fast-mcp.git
cd apple-mail-fast-mcp
uv sync --dev
Skip this section if you installed the
.mcpbbundle — it wires up Claud