Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Cpanel Mail

БесплатноНе проверен

Manages email accounts via IMAP/SMTP, enabling reading, searching, sending, replying, forwarding, and folder management with multi-user and OAuth support.

GitHubEmbed

Описание

Manages email accounts via IMAP/SMTP, enabling reading, searching, sending, replying, forwarding, and folder management with multi-user and OAuth support.

README

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

  • 22 typed MCP tools — one per operation with Pydantic input/output schemas, tool annotations (readOnlyHint/destructiveHint/…), and actionable error messages
  • Full mailbox management — read, search, threading, move, copy, flag, star, delete, reply, forward, drafts, calendar invites, folder create/delete/rename
  • Multi-user server mode — one instance, many users, each with their own bearer token and mailbox (per-request isolation)
  • OAuth 2.1 via Cloudflare Access — optional SSO (Google / GitHub / Email OTP) instead of shared bearer tokens; server exposes RFC 9728 protected-resource metadata, RFC 8414 AS metadata, and RFC 7591 DCR — proxied over CF Access SaaS OIDC
  • Idempotent sends — pass idempotency_key on send_email/reply_email/forward_email/send_invite to safely retry after client timeouts
  • Per-caller rate limiting — sliding window (send: 30/min, read: 300/min defaults), tunable per bucket
  • Attachment size guard — configurable cap (default 25 MB total)
  • 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 [email protected] \
  -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 [email protected] -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":"[email protected]","password":"...",
   "smtp_host":"mail.work.com","imap_host":"mail.work.com",
   "sent_folder":"INBOX.Sent"},
  {"name":"gmail","user":"[email protected]","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
sso_emails no []

sso_emails is a list of external identities (e.g. Google login addresses) that map to this account. Only used in OAuth mode: the JWT email claim is looked up here before falling back to user. Handy when the SSO identity differs from the mailbox address — e.g. logging in with [email protected] to access [email protected].

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

Tools

Since 0.7.0 the server exposes one tool per operation (was a single dispatcher tool before). Every tool has a typed Pydantic input schema, an outputSchema for structuredContent, and annotations (readOnlyHint / destructiveHint / idempotentHint / openWorldHint) so clients can render the right approval UI.

tool annotations purpose
list_accounts read-only, idempotent Accounts visible to caller (no secrets)
list_folders read-only, idempotent, openWorld IMAP folders (UTF-7 decoded)
list_recent read-only, idempotent, openWorld Paginated list of recent messages
search_emails read-only, idempotent, openWorld IMAP SEARCH by FROM/TO/SUBJECT/BODY/TEXT
read_email read-only, idempotent, openWorld Headers + body (opt: attachments as base64)
download_attachments read-only, idempotent, openWorld Fetch attachments by name filter
get_thread read-only, idempotent, openWorld Group messages by Message-ID/References
send_email destructive, idempotent Send new message (attachments, HTML, save-to-sent)
reply_email destructive, idempotent Reply to UID, preserves References chain
forward_email destructive, idempotent Forward UID (attaches original body + files)
send_invite destructive, idempotent ICS calendar invite (RFC 5545, METHOD:REQUEST)
save_draft non-destructive, idempotent APPEND a draft to Drafts folder
mark_read/mark_unread non-destructive, idempotent, openWorld Toggle \Seen flag
star_email/unstar_email non-destructive, idempotent, openWorld Toggle \Flagged flag
move_email non-destructive, idempotent RFC 6851 MOVE (COPY+EXPUNGE fallback)
copy_email non-destructive IMAP COPY
delete_email destructive, idempotent Soft-delete → Trash (or hard with permanent=true)
create_folder non-destructive IMAP CREATE + SUBSCRIBE
delete_folder destructive, idempotent IMAP DELETE (must be empty)
rename_folder non-destructive IMAP RENAME

Example — send with attachment + Save-to-Sent

{
  "tool": "send_email",
  "arguments": {
    "to": "[email protected]",
    "subject": "Report",
    "text": "See attached.",
    "html": "<p>See <b>attached</b>.</p>",
    "attachments": [
      {"path": "/tmp/report.pdf"},
      {"name": "note.txt", "content": "hi from inline"}
    ],
    "idempotency_key": "report-2026-07-20-A"
  }
}

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

Total attachment size is capped by MCP_MAX_ATTACHMENT_MB (default 25 MB).

Idempotent sends

Any of send_email, reply_email, forward_email, send_invite accept idempotency_key. Second call with the same (caller, key) within 5 minutes returns the cached first response (idempotent_replay: true) — no duplicate delivery on client retries.

Rate limiting

Per-caller sliding window; defaults:

  • send bucket (send/reply/forward/invite/draft): 30 requests/min
  • read bucket (everything else): 300 requests/min

Tune via MCP_RATE_LIMIT_SEND_PER_MIN / MCP_RATE_LIMIT_READ_PER_MIN. When exceeded, the tool returns a structured error with retry_after_seconds.

Reply / forward preserve threading

reply_email copies the original Message-ID into In-Reply-To and appends it to References so mail clients thread correctly. forward_email adds a standard Fwd: prefix and quotes the original headers + body inline; any attachments on the original are re-attached to the forward.

Pick an account (multi-account setup)

Every tool accepts an optional account param; omit it to use the first configured account. In multi-user OAuth mode this field is ignored — the account is chosen by the caller's bearer token or SSO email.

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 [email protected] --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

OAuth 2.1 via Cloudflare Access (optional, for MCP clients that require OAuth)

Adds SSO on top of the multi-user mode. Cloudflare Access SaaS OIDC does the actual user login (Google / GitHub / Email OTP); the server verifies the resulting JWT and maps email → account. Also exposes:

  • GET /.well-known/oauth-protected-resource (RFC 9728) — root and /mcp path-suffixed
  • GET /.well-known/oauth-authorization-server (RFC 8414) — composed metadata that adds a registration_endpoint
  • POST /register (RFC 7591 Dynamic Client Registration) — returns the pre-configured CF client credentials so DCR-only clients can register
  • WWW-Authenticate: Bearer realm="mcp", resource_metadata="..." on 401 responses

Env vars to enable:

var purpose
CF_ACCESS_AUD audience tag / SaaS app Client ID
CF_ACCESS_OIDC_ISSUER full CF OIDC issuer URL
MCP_OAUTH_UPSTREAM_ISSUER same as above (enables the DCR proxy)
MCP_OAUTH_CLIENT_ID SaaS app Client ID
MCP_OAUTH_CLIENT_SECRET SaaS app Client Secret
MCP_RESOURCE_URL public URL of this server

Full setup (CF dashboard config, systemd env file, ingress) → deploy/README.md.

Client compatibility

Client Auth mode Status
Claude Code CLI (claude mcp add --transport http … -H "Authorization: Bearer …") Multi-user bearer ✅ Works
Claude Code CLI + OAuth (--client-id/--client-secret) OAuth 2.1 with static credentials ✅ Works
Anthropic Messages API (mcp_servers + authorization_token) Static bearer, no OAuth flow ✅ Works
claude.ai Custom Connector (web) OAuth 2.1 via CF Access OIDC ⚠️ Beta — see below

claude.ai Custom Connector — known issue (may be fixed in 0.7.0)

Custom Connectors is still marked BETA. Earlier versions (≤0.6.x) exposed a single email dispatcher tool with a generic params: dict; Anthropic's frontend rejected the setup with an opaque ofid_... reference before opening the OAuth browser. In 0.7.0 the surface changed to 22 individually typed tools with outputSchema and annotations, which may help.

If setup still fails on 0.7.0+:

  • Fill in the OAuth Client ID and Secreto del cliente OAuth fields from your CF Access SaaS app manually (leaving them empty relies on DCR, which we proxy but Claude's frontend may still fail on).
  • Contact Anthropic support with the exact ofid_... reference from the error toast — only they can look up what specifically failed.
  • Meanwhile use the Claude Code CLI (works fully) or the Messages API with a static authorization_token.

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. [email protected]) 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.

from github.com/rosauceda/cpanel-mail-mcp

Установка Cpanel Mail

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/rosauceda/cpanel-mail-mcp

FAQ

Cpanel Mail MCP бесплатный?

Да, Cpanel Mail MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Cpanel Mail?

Нет, Cpanel Mail работает без API-ключей и переменных окружения.

Cpanel Mail — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Cpanel Mail в Claude Desktop, Claude Code или Cursor?

Открой Cpanel Mail на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Cpanel Mail with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории communication