Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Local MCP server for macOS Mail reads plus visible unsent compose, reply, and forward drafts, and constrained single-message moves.

README.md

Mail MCP

Local MCP server for macOS Mail reads plus visible unsent compose, reply, and forward drafts, and constrained single-message moves.

Built entirely by OpenAI GPT-5.4 via Codex.

Overview

This project exposes Apple Mail accounts, mailboxes, inbox messages, and direct message reads through MCP.

Supported tools:

  • mail_check_access
  • mail_list_accounts
  • mail_list_mailboxes
  • mail_list_mailbox_messages
  • mail_list_inbox_messages
  • mail_get_message
  • mail_compose_message
  • mail_reply_to_message
  • mail_forward_message
  • mail_move_message

The primary read workflow is mail_list_inbox_messages, which returns messages for all inboxes and supports headersOnly: true when you only need headers and metadata.

The compose workflow is intentionally narrow: the server can open visible unsent compose, reply, and forward drafts, but it does not expose any send tool. The move workflow is intentionally constrained: it supports moving one message within the same account, but it does not allow moves to Trash or deleted-message mailboxes.

Path Conventions

  • Tool inputs use explicit segment arrays:
  • mailboxPathSegments: ["Inbox"]
  • mailboxPathSegments: ["Archive", "2026"]
  • destinationMailboxPathSegments: ["Receipts"]
  • Mailbox results include both path and pathSegments. Use path for display and pathSegments when calling tools.
  • Message results include both mailboxPath and mailboxPathSegments. Use mailboxPath for display and mailboxPathSegments when calling tools.
  • Message results use id. Tools that operate on a specific message require that same value under the input name messageId.

Example round trip:

  1. Call mail_list_mailboxes and pick a mailbox result such as:
   {
     "accountId": "account-1",
     "name": "Receipts",
     "path": "Archive / 2026 / Receipts",
     "pathSegments": ["Archive", "2026", "Receipts"]
   }
  1. Call mail_list_mailbox_messages with:
   {
     "accountId": "account-1",
     "mailboxPathSegments": ["Archive", "2026", "Receipts"]
   }
  1. Take a returned message object such as:
   {
     "id": 4812,
     "accountId": "account-1",
     "mailboxPath": "Archive / 2026 / Receipts",
     "mailboxPathSegments": ["Archive", "2026", "Receipts"]
   }
  1. Call mail_get_message with:
   {
     "accountId": "account-1",
     "mailboxPathSegments": ["Archive", "2026", "Receipts"],
     "messageId": 4812
   }

Requirements

  • Node.js 20+
  • macOS
  • Mail.app configured with at least one account
  • Automation permission to control Mail
  • A signed MailMCPHelperApp build

Setup

  1. Install dependencies:
   npm install
  1. Copy .env.example to .env if you want to override defaults:
   cp .env.example .env
  1. Build the helper app:
   npm run build:helper-app

The build script compiles the app unsigned, then signs the finished bundle with the first local Apple Development identity. Override that selection with MAIL_MCP_CODESIGN_IDENTITY if needed.

  1. Run local quality checks:
   npm run verify
  1. Run a real Mail smoke test:
   npm run test:live

Optional environment variables:

  • MAIL_MCP_REQUEST_TIMEOUT_MS
  • MAIL_MCP_HELPER_TIMEOUT_MS
  • MAIL_MCP_HELPER_APP_PATH

Run

Start the server in development:

npm run dev

Build production output:

npm run build
npm start

Permissions

The server launches a signed MailMCPHelperApp and runs Mail automation inside that app process. This keeps the macOS Automation/TCC boundary attached to the helper app instead of Terminal or the client process.

Run mail_check_access once after installation. On first use, macOS may prompt for permission to control Mail.

If the prompt does not appear automatically in your client, launch the helper app directly once:

open MailMCPHelperApp/build/Build/Products/Release/MailMCPHelperApp.app

The server starts even before access is granted. Use mail_check_access to confirm permission state and get an actionable error message if macOS Automation consent is still pending.

To re-run the consent flow on a test machine, reset Mail Apple Events permission for the helper app and then run mail_check_access again:

tccutil reset AppleEvents com.andrewfinke.mailmcphelper

After the reset, confirm that the macOS prompt names MailMCPHelperApp, then confirm System Settings shows MailMCPHelperApp -> Mail.

Verify

npm run verify

Notes

  • The filesystem-backed ~/Library/Mail approach is intentionally not used here because it requires broader privacy access and depends on undocumented Mail storage details.
  • Message bodies are returned for inbox and mailbox listing tools unless headersOnly: true is set.
  • Compose, reply, and forward tools always open visible drafts. Hidden draft mode is intentionally avoided because Mail does not clean up invisible compose objects reliably through automation.
  • Raw headers are optional for list tools and default to false.
  • Attachment metadata is included, but not attachment bytes.
  • The helper app executes JavaScript for Automation in-process via OSAKit.

MCP Setup

The server runs over stdio.

Example client configuration for the built server:

{
  "mcpServers": {
    "mail": {
      "command": "node",
      "args": ["/absolute/path/to/mail-mcp/dist/index.js"],
      "cwd": "/absolute/path/to/mail-mcp",
      "env": {
        "MAIL_MCP_HELPER_APP_PATH": "/absolute/path/to/mail-mcp/MailMCPHelperApp/build/Build/Products/Release/MailMCPHelperApp.app"
      }
    }
  }
}

For local development without building first:

{
  "mcpServers": {
    "mail": {
      "command": "npx",
      "args": ["tsx", "src/index.ts"],
      "cwd": "/absolute/path/to/mail-mcp"
    }
  }
}

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.