Skip to main content

cpanel-mail-mcp

MCP server for IMAP/SMTP email accounts — works with cPanel, Gmail (app passwords), Outlook, Fastmail, iCloud, or any provider that speaks plain IMAP + SMTP.

Features

  • Multi-user server mode — one instance, many users, each with their own bearer token and mailbox (per-request isolation)
  • Multi-account — manage multiple email accounts from different providers
  • Read, search, list — full IMAP support with folder browsing
  • Send emails — plain text, HTML, or both (multipart/alternative)
  • Attachments — send via file path or base64-encoded inline data
  • Download attachments — extract attachments from received emails as base64
  • Calendar invites — send proper ICS invitations with Accept/Decline buttons
  • Save to Sent — automatically saves sent emails to the Sent folder via IMAP
  • Optional send gate — configurable confirmation code to prevent accidental sends
  • International folders — handles UTF-7 encoded folder names (German, etc.)
  • Compact MCP surface — one email tool with lazy action discovery to reduce client context use

Install

With uvx (recommended, no venv setup)

claude mcp add cpanel-mail \
  -e CPANEL_USER=you@example.com \
  -e CPANEL_PASS='your_password' \
  -e CPANEL_SMTP_HOST=mail.example.com \
  -e CPANEL_IMAP_HOST=mail.example.com \
  -- uvx cpanel-mail-mcp

With pipx

pipx install cpanel-mail-mcp
claude mcp add cpanel-mail \
  -e CPANEL_USER=you@example.com -e CPANEL_PASS='...' \
  -e CPANEL_SMTP_HOST=mail.example.com -e CPANEL_IMAP_HOST=mail.example.com \
  -- cpanel-mail-mcp

Development install (from a git checkout)

git clone https://github.com/rosauceda/cpanel-mail-mcp
cd cpanel-mail-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e .
cp .env.example .env         # edit
cpanel-mail-mcp              # runs the stdio server
# or: python -m cpanel_mail_mcp

Configuration

Three ways, in priority order:

1. EMAIL_ACCOUNTS_JSON (best for multi-account)

export EMAIL_ACCOUNTS_JSON='[
  {"name":"work","user":"me@work.com","password":"...",
   "smtp_host":"mail.work.com","imap_host":"mail.work.com",
   "sent_folder":"INBOX.Sent"},
  {"name":"gmail","user":"me@gmail.com","password":"app_pass",
   "smtp_host":"smtp.gmail.com","smtp_port":587,
   "imap_host":"imap.gmail.com","sent_folder":"[Gmail]/Sent Mail"}
]'

2. EMAIL_ACCOUNTS_FILE

Point to a JSON file with the same shape.

3. Legacy single-account (CPANEL_*)

Backwards compatible with 0.1.x installs. See .env.example.

Account fields

field required default
name no user
user yes
password yes
smtp_host yes
smtp_port no 465
imap_host yes
imap_port no 993
sent_folder no Sent
drafts_folder no Drafts
save_to_sent no true
from_name no

Loading a dev .env

The server auto-loads .env from the current working directory. Point it elsewhere with:

export EMAIL_ENV_FILE=/absolute/path/to/.env

Usage — the email tool

The server exposes one MCP tool named email. Call it with an action string and a params dict. Discover actions with action='help' — the default when action is omitted:

{ "action": "help" }

Actions at a glance

action purpose
help list all actions and their signatures
list_accounts see configured accounts (no secrets returned)
list_folders list IMAP folders (UTF-7 decoded)
list_recent last N messages of a folder
search IMAP search by FROM/TO/SUBJECT/BODY/TEXT
read read a message by UID (optionally with attachments)
download_attachments fetch attachments as base64
send send an email (text/HTML/attachments)
save_draft append a draft to the account's Drafts folder
send_invite send an ICS calendar invite

Send an email with an attachment

{
  "action": "send",
  "params": {
    "to": "someone@example.com",
    "subject": "Report",
    "text": "See attached.",
    "html": "<p>See <b>attached</b>.</p>",
    "attachments": [
      {"path": "/tmp/report.pdf"},
      {"name": "note.txt", "content": "hi from inline"}
    ]
  }
}

Attachment shapes accepted:

  • {"path": "/local/file.pdf", "name": "renamed.pdf"?} — read from disk
  • {"name": "x.bin", "content_base64": "..."} — inline base64
  • {"name": "x.txt", "content": "hello", "mime": "text/plain"?} — inline text

Read a message and its attachments

{
  "action": "read",
  "params": {"uid": "42", "folder": "INBOX", "include_attachments": true}
}

Download only specific attachments

{
  "action": "download_attachments",
  "params": {"uid": "42", "filenames": ["report.pdf"]}
}

Send a calendar invite

{
  "action": "send_invite",
  "params": {
    "to": "guest@example.com",
    "subject": "Kickoff",
    "start": "2026-07-25 09:00",
    "end":   "2026-07-25 10:00",
    "location": "Zoom link here",
    "description": "quarter review"
  }
}

Datetimes accept ISO 8601 (2026-07-25T09:00:00-06:00) or YYYY-MM-DD HH:MM. Naive times are assumed UTC.

Save a draft

{"action": "save_draft", "params": {"subject": "todo", "text": "..."}}

Search

{"action": "search", "params": {"query": "invoice", "field": "SUBJECT"}}

Pick an account (multi-account setup)

Any action accepts an optional account param; omit it to use the first configured account:

{"action": "send", "params": {"account": "work", "to": "...", "text": "..."}}

Run as an HTTP server (LXC / VPS / homelab)

By default cpanel-mail-mcp runs over stdio — your MCP client launches it per session. To run it 24/7 as a shared HTTPS endpoint, you have two shapes:

Multi-user (recommended for a team)

One instance, many users. Each person has their own bearer token, and the server enforces that they can only touch their own mailbox. Setup:

# on the server (Debian/Ubuntu LXC as root)
apt install -y curl      # if not present
curl -fsSL https://raw.githubusercontent.com/rosauceda/cpanel-mail-mcp/main/deploy/install.sh | bash

# after logging out and back in (so $EMAIL_USERS_FILE is exported):
cpanel-mail-mcp admin add-user --email juan@dominio.com --host mail.dominio.com
# prompts for password → prints juan's bearer token → hand it to juan

systemctl enable --now cpanel-mail-mcp

Each user, in their Claude Code:

claude mcp add --transport http --scope user cpanel-mail \
  --header "Authorization: Bearer <THEIR_TOKEN>" \
  https://mcp.yourdomain.com/mcp

Full docs, admin CLI, migration, Cloudflare Tunnel example, hardened systemd unit → deploy/.

Single-tenant (only you)

export MCP_TRANSPORT=streamable-http
export MCP_HOST=127.0.0.1
export MCP_PORT=8080
export MCP_AUTH_TOKEN="$(python3 -c 'import secrets; print(secrets.token_urlsafe(36))')"
export EMAIL_ACCOUNTS_JSON='[{...one account...}]'   # or EMAIL_ACCOUNTS_FILE
cpanel-mail-mcp

Endpoints:

  • POST /mcp — MCP Streamable HTTP transport (requires bearer token)
  • GET /health — plain ok for reverse-proxy probes

Send gate (recommended when an agent has this tool)

Prevent accidental sends by requiring a shared secret:

export EMAIL_SEND_CONFIRMATION_CODE=please-send

Every send / send_invite call must include confirm: "please-send" in params, or the server refuses.

Security notes

  • .env is git-ignored. Never commit it.
  • Prefer a dedicated mailbox (e.g. mcp@yourdomain.com) with a small quota.
  • If your provider supports app passwords (Gmail, Fastmail, iCloud), use one instead of your primary password.
  • MCP env vars end up in ~/.claude.json on your machine — treat that file like a keychain.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cpanel_mail_mcp-0.5.3.tar.gz (26.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cpanel_mail_mcp-0.5.3-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

Details for the file cpanel_mail_mcp-0.5.3.tar.gz.

File metadata

  • Download URL: cpanel_mail_mcp-0.5.3.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for cpanel_mail_mcp-0.5.3.tar.gz
Algorithm Hash digest
SHA256 f2945a021679c08fc2a73cbd5d468eda5b3b7d3452e8373f464d5aab4b9911de
MD5 c7496418af095365aa93a58dda7cf4a7
BLAKE2b-256 242a47f5bd2b904bdab2df2d4c4030b6ee6f4bd922581e739fa7f974c41524cd

See more details on using hashes here.

File details

Details for the file cpanel_mail_mcp-0.5.3-py3-none-any.whl.

File metadata

File hashes

Hashes for cpanel_mail_mcp-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 990eed682699db3a4ae78d4907e1982ca840a76e2159bc57f9f3798690508e5d
MD5 71a5c547d193a3dc081546305e9d072f
BLAKE2b-256 8edb591d4a260173a3a0daf6e8c1003dc7e28a4bca0c35e8425c51682fe769ed

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page