Authenticated email gateway for AI agents β per-agent inboxes, HITL approval, SPF/DKIM verified.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Receive inbound over webhook Β· WebSocket Β· REST Β· MCP. Send through an HTTP API. Every sender β human or agent β identity-verified.
A Token Canopy product
/v1 is now generally available β shipped in v1.5.0.
Hosted (e2a.dev) Β· Quickstart Β· Examples Β· Concepts Β· API Β· SDKs Β· MCP Β· Deploy Β· FAQ
[!IMPORTANT] The core
/v1API and SDKs are stable and generally available (GA) as of v1.5.0: no breaking changes within/v1. That tag is the compatibility baseline β every later release is audited against it. A small, explicitly enumerated surface is still beta and may change before it is declared stable β contacts & outreach, scheduled sending (send_at), email templates & starter templates, the reviews (HITL) queue, agent protection config, agent-scoped suppressions, managed unsubscribe, message lifecycle diagnostics, and thethread_idmessage-read field. Beta surface is markedx-stability-level: betain the OpenAPI spec and(beta)in the docs; where only specific values of a stable field are beta (thescheduledsend status, the screening/review-hold event types, theblocked_by_policyerror code), the field carriesx-experimental-valuesnaming exactly those values. Everything else is covered by the GA freeze. See the full matrix in docs/api.md β Stability: GA and beta surface. Existingv1.0.xapplication/cherry-pick tags predate the API freeze and are not/v1compatibility baselines.
e2a is an authenticated email gateway for AI agents. It receives inbound mail, evaluates SPF, every DKIM signature, and DMARC, and delivers structured authentication evidence over whichever channel fits your runtime. Outbound goes back out through an HTTP API, with an optional human-in-the-loop approval gate.
Four ways to plug an agent in:
https://api.e2a.dev/mcp) and your agent gets an inbox toolset (list_messages, send_message, reply_to_message, β¦). The fastest path for agent frameworks. β MCP server@e2a/sdk) and Python (e2a) clients with one-call webhook verification and a WebSocket listen() stream. β SDKse2a listen bridges inbound mail to a local HTTP handler (including an OpenAI Responses auto-reply mode). β CLIWhat you get on top of bare SMTP:
thread_id metadata on message reads; caller-owned conversation_id remains application correlation{{variable}} templates rendered server-side at send time, plus a pre-built starter catalog β docs/templates.mdcontact.due due-queue notification event β docs/api.mdsend_at on send/reply/forward defers submission up to 90 days ahead; a scheduled send is durable acceptance (status=scheduled) and can be canceled by trashing the message before submissionThe fastest path is to give your AI agent an inbox directly. Install the e2a plugin β it registers the hosted MCP server and an operate-well skill, so your agent can send, receive, reply in-thread, and hold mail for review out of the box. On first tool use it runs an OAuth flow in your browser β no API key to paste.
Claude Code
Codex
Then launch codex, run /plugins, and install e2a.
Cursor β add the MCP server directly. Put this in .cursor/mcp.json (or ~/.cursor/mcp.json to get it in every project); Cursor opens your browser to authorize on first use, no API key to paste:
Other MCP clients (Zed, Goose, Windsurf, Claude Desktop, raw mcp.json) β point straight at https://api.e2a.dev/mcp; ready-to-paste configs are in plugins/e2a/clients/. See plugins/e2a/README.md for the full per-client guide.
You can either use the hosted instance or self-host.
agents.e2a.dev domain for instant slug-based onboarding (no DNS setup), a dashboard, the hosted MCP server, and managed deliverability.shared_domain in config.yaml.e2a is useful anywhere an AI agent needs a real inbox, persistent email threads, and a safe path from inbound message to outbound action. Start with a complete example:
Build an AI support agent β triage customer requests, retrieve context, reply in-thread, and hold sensitive replies for approval.
Build an AI receptionist β answer common inquiries, route messages, and forward conversations to a human team.
Build an AI scheduling agent β coordinate participants, propose times, and preserve state across multi-turn replies.
Build an e-commerce agent β answer order questions, handle returns, and coordinate with vendors through persistent email threads.
Build a sales agent β qualify inbound interest, personalize follow-ups, and keep every conversation moving.
Build a recruiting agent β coordinate candidates, schedule interviews, and keep hiring workflows in one thread.
Build a voice follow-up agent β turn a completed call into an email follow-up and keep the conversation going.
Build a procurement agent β coordinate quotes, purchase orders, and vendor threads with human approval for commitments.
A support inbox for your AI assistant β give an agent support@yourbrand.com, receive customer mail with SPF/DKIM/DMARC already evaluated as structured evidence, and reply in-thread. Add HITL so anything sensitive waits for a human to approve before it goes out.
Email between agents β yours and other organizations' β every agent has a real, verified address, so two companies' agents can exchange mail the same way humans do: no new client, protocol, or shared platform to install.
A personal concierge on your laptop β subscribe over WebSocket (no public URL, no ngrok, no port forwarding), so a local agent can watch an inbox from behind any firewall, triage it, draft replies, and take actions.
Email-triggered workflows β turn inbound mail into structured events: order confirmations, forms, support tickets, notifications, and receipts rendered server-side from templates, with conversation_id correlated back to your app's state.
Autopilot with human oversight β an agent drafts outbound mail (newsletters, outreach, reports) and holds each send for one-click approval via magic-link email or the review queue, with automatic expiry policy if no one reviews in time.
e2a-runbooks builds several of the above as small, complete, runnable projects β one per agent framework, each demonstrating a different use case and a different part of this API:
| Example | Framework | What it shows |
|---|---|---|
| Support agent | Mastra | Threading, memory, and the outbound approval gate |
| Receptionist | OpenAI Agents SDK | forward to a desk allowlist, update_labels |
| AI SRE | Claude Agent SDK | Authentication as a gate; a no-tools agent that can't touch prod |
| Contract review | LangChain | Attachments β including the data-vs-download_url split |
| Escalation desk | CrewAI | Several agent identities; cross-identity conversation_id |
| Scheduling secretary | Pydantic AI | Multi-turn state rebuilt from conversations, no database |
They are examples to copy from rather than services to deploy β each says what it simplifies. For the smallest possible signed-webhook reference instead, see the in-repo minimal examples.
Inbound flow: SMTP β SPF/DKIM/DMARC evaluation β agent lookup β webhook / WebSocket / REST / MCP delivery.
Outbound flow: API call β optional HITL hold β SMTP relay (agent-to-agent) or upstream SMTP (agent-to-human).
Inbound mail reaches you several complementary ways β chosen per integration, not set on the agent. There is no delivery "mode" on the agent record; any agent the caller owns can be consumed over any of these:
| Channel | How | Public URL needed? |
|---|---|---|
| Webhooks | Account-level subscriptions (POST /v1/webhooks) β HTTPS POST per event, filterable by agent / application conversation / event type | Yes |
| WebSocket | Per-agent real-time notification stream (/v1/agents/{email}/ws) + REST fetch | No |
| REST polling | Pull messages via GET /v1/agents/{email}/messages β the default path for MCP-based agents | No |
| MCP tools | The e2a MCP server's inbox tools (list_messages, get_message, get_attachment, list_conversations, β¦) layered over the REST API | No |
Notifications carry lightweight metadata (message id, sender, subject); you fetch the full body + attachments over REST when you want them. A disconnected WebSocket client accumulates "unread" messages; on reconnect, the server drains them as notifications.
Webhooks are an account-level resource (/v1/webhooks), chosen per integration rather than configured on the agent.
Inbound messages expose header_from (the parsed RFC 5322 From address), envelope_from (SMTP MAIL FROM), verified_domain (a nullable DMARC-pass convenience projection), andβon detail responsesβauthentication (SPF, every DKIM signature, and the aligned DMARC result). Reply-To remains separate and never replaces header_from.
For list and review decisions, a non-null verified_domain means DMARC passed for that RFC 5322 From domain. On detail responses, the equivalent check is authentication?.dmarc.status === "pass". Neither field authenticates the mailbox local part, a person, or message content. authentication is null for outbound messages and providerless local loopback delivery.
Before trusting any webhook field, verify the delivery envelope's X-E2A-Signature with the webhook's whsec_β¦ signing secret. The envelope signature covers the complete structured payload, including authentication.
The one-call shortcut parses and verifies a delivery, returning a typed event β use it instead of trusting any field on an unverified payload:
For small signed-webhook references using the ergonomic inbound facade, see the minimal Python and TypeScript OpenAI examples with provider snippets.
construct_event / constructEvent checks that the HMAC matches the canonical signing string and the timestamp is within a 5-minute replay window. Pass an array of secrets to accept either during a rotation: constructEvent(body, header, [oldSecret, newSecret]).
Messages fetched over an authenticated channel β client.messages.get(address, id) or the client.listen(...) stream β are already trusted (the bearer token authenticated the call), so no verify step is needed there.
Email clients build reply threads from the RFC Message-ID, In-Reply-To,
and References graph. Use reply with the original e2a message ID so e2a can
emit those headers; a fresh send or forward starts a new email thread.
conversation_id is separate, caller-owned application correlation. Both
send and reply accept the optional opaque value, and e2a keeps its existing
minting, inheritance, and delivery-correlation behavior when it is omitted.
Applications can use it to associate mail with a workflow, ticket, or model
session, but reusing it does not join fresh sends into one email thread, and
changing it does not split replies out of their RFC thread.
Existing message list and detail responses may also include thread_id
(threadId in TypeScript and SDK-shaped CLI JSON). This optional beta field is
server-owned, read-only, scoped to one agent mailbox, and derived from reply
topology. It is omitted for legacy rows without an assignment. There is no
thread_id request field, message filter, or thread list/detail endpoint, and
the field is not added to webhook events, WebSocket notifications, exports, or
MCP output.
Agent frameworks should bind model memory with conversation_id: create or
resume the runtime's internal conversation, pass its stable, non-sensitive
session ID (or an opaque stored alias), and scope that binding to the inbox and
sender. Continue replying by the original message IDβthe correlation value
aligns application state, while RFC reply headers preserve the Gmail/Outlook
thread. Never treat either identifier as authorization.
Inbound email is a prime indirect prompt-injection vector β a message can smuggle instructions aimed at your agent's LLM (hidden HTML, zero-width / Unicode-tag text, encoded payloads) or phish the human behind it. Opt in per agent and e2a inspects message content β subject, plaintext, and both visible and hidden HTML β before your agent ever sees it.
A built-in, dependency-free heuristics detector flags prompt-injection, jailbreak, obfuscation, and data-exfiltration patterns (mapped to OWASP LLM01 / MITRE ATLAS); an optional LLM detector adds semantic injection and phishing classification. Each message gets a verdict β allow Β· review Β· block β set by the agent's scan sensitivity (off Β· low Β· medium Β· high): review routes it into the shared HITL queue, block drops it before delivery. Screening is fail-safe β if a detector times out or degrades, the message fails to review, never to a silent allow β and every verdict is written to protection_events for audit and threshold tuning.
Turn it on with PUT /v1/agents/{email}/protection (the same sub-resource as HITL holds), which carries the inbound/outbound Γ gate/scan posture.
[!NOTE] Content screening is currently available on self-hosted deployments only β it is not yet enabled on the hosted service at e2a.dev. Self-host the image (see Deployment) to use it today.
When an agent's protection config holds an outbound message for review, send and reply calls do not dispatch immediately. The message is stored with status pending_review and the API returns HTTP 202 Accepted. A reviewer must approve it before delivery; otherwise, after a configurable TTL, the protection config's holds.on_expiry decides the terminal: approve (the message just goes out, terminal status sent β for outbound, approving is sending) or reject (discard, review_expired_rejected). (Inbound messages can be held for review too β there, the auto-approve terminal is review_expired_approved, releasing the message to the inbox.)
Reviewers can approve or reject via:
POST /v1/reviews/{id}/approve or /reject (id-addressed, no inbox email needed; lists held items across all the account's inboxes via GET /v1/reviews). This is the only approve/reject path β a review's id is the held message's id.approve_review / reject_review (with list_reviews / get_review to find them).GET /v1/approve?t=β¦ and /v1/reject?t=β¦ URLs (requires E2A_PUBLIC_URL and outbound SMTP configured).Enable review holds on an agent via PUT /v1/agents/{email}/protection: set the outbound gate action to review (or turn on the content scan), plus the hold TTL (holds.ttl_seconds) and its expiry behavior (holds.on_expiry = approve or reject). Posture lives entirely on the protection sub-resource.
All endpoints are under /v1 unless noted. Auth is Authorization: Bearer <api_key> except for /api/health, /v1/info, /api/feedback, and the HITL magic-link routes. Path parameters containing @ (agent emails) must be URL-encoded.
The surface covers domain registration + verification, agent CRUD, inbound/outbound messages, webhook subscriptions, HITL approve/reject (API key or signed magic-link token), GDPR-style export and deletion, and a WebSocket channel for real-time inbound delivery.
See docs/api.md for the full endpoint reference, or api/openapi.yaml for the machine-readable spec.
The fastest way to give an AI-agent runtime an inbox. e2a runs a hosted Model Context Protocol server β point any MCP-aware host (Claude Desktop, Cursor, Cline, Google ADK, LangChain, OpenAI Agents SDK, β¦) at the Streamable HTTP endpoint:
Authenticate either with OAuth 2.1 (add e2a as a connector and authorize in the browser) or a Bearer API key (Authorization: Bearer <e2a API key>). An agent-scoped credential resolves its agent server-side; account-scoped callers pass the agent email per tool call.
The toolset covers the full agent loop β inbox (list_messages, get_message, get_attachment, list_conversations, get_conversation, update_message_labels), outbound (send_message, reply_to_message, forward_message), HITL review (list_reviews, get_review, approve_review, reject_review), plus agent/domain/webhook management. Inbound is consumed by polling (list_messages) or a create_webhook subscription.
The hosted server is the primary path; npm publishing of @e2a/mcp-server is retired (frozen at 0.5.0). See mcp/README.md for per-framework setup and the full tool reference.
The CLI covers both scripting (send/reply/messages/whoami, with a stable exit-code contract) and account management (agents, keys, protection). Drive agents interactively over the MCP tools or the SDKs instead; manage domains/webhooks in the web dashboard.
| Command | Description |
|---|---|
e2a login | Open a browser login and save an account-scoped API key to ~/.e2a/config.json (does not set a default agent β use e2a config set agent_email or --agent) |
e2a whoami | Show the key identity: user, scope, bound agent, plan |
e2a doctor | Read-only diagnostics of the production email path: config, API, agent access, custom-domain DNS (live), MCP, webhooks, outbound SMTP visibility. Never sends mail or mutates anything; --json for a versioned report |
e2a agents list|create|get | Manage inboxes (requires an account-scoped key) |
e2a keys create|list|delete | Mint, list, and revoke API keys (requires an account-scoped key) |
e2a protection get|set | Show or update an agent's HITL screening/review config |
e2a contacts list|get|create|update|delete|import|outreach ... | Manage account contacts and per-agent outreach state, with suppression visibility |
e2a suppressions list|add|remove | Inspect and manage recipient block lists (account-wide GA; agent-scoped is beta) |
e2a send / e2a reply | Send an email as the agent, or reply in-thread |
e2a messages list|get | List or fetch messages for an agent |
e2a listen --agent <email> | Stream inbound email for an agent over WebSocket (real-time; --json for raw, --forward <url> to bridge to a local HTTP handler) |
e2a config [list|get|set] | View or update the local config |
When the --forward <url> endpoint path ends in /v1/responses, listen switches to OpenAI Responses API forwarding: each inbound email is formatted as a Responses payload and the model's output is sent back as an auto-reply. Add --forward-token <token> to attach a bearer token to the forwarded request:
See cli/README.md for full reference.
WebSocket (no public URL needed):
See sdks/typescript/README.md.
Three audiences each configure a different surface:
| Audience | What they configure | Where |
|---|---|---|
| Server operator β runs the Go backend | DB, signing key, SMTP, OAuth, optional shared domain | config.yaml + E2A_* env |
| CLI user β drives an inbox from a terminal | Deployment URL + login | E2A_URL + e2a login |
SDK / MCP user β calls /v1 from code | API host + key | E2A_API_URL + E2A_API_KEY |
| Web dashboard deployer β hosts the Next.js dashboard | Public site URL + branding | NEXT_PUBLIC_* build-time env |
The Go binary runs on any container host; storage is plain Postgres 14+; outbound mail goes through standard SMTP. Most workers coordinate via SELECT β¦ FOR UPDATE SKIP LOCKED, so multi-replica is safe β the two real horizontal-scaling caveats are in-memory WebSocket fan-out and per-process rate limits.
See docs/deployment.md for the full env-var reference, shared-domain DNS setup, and scaling/limitation notes.
<t>.<body> signing string delivered in the X-E2A-Signature header; receivers reject timestamps older than 5 minutesstate parameterenv: production in config.yaml) enforces the above where development mode is more permissiveReport security issues privately β see SECURITY.md for the disclosure process and what's in scope. Do not file public GitHub issues for vulnerabilities.
Live inbound and outbound message data is retained indefinitely; soft-deleted messages and inboxes are purged after 30 days by default. Outbound bodies and attachments remain retained through terminal review and delivery transitions. API keys are stored as hashes; attachments go in JSONB rows (no S3/GCS). Application logs include sender/recipient addresses (standard MTA practice) but never bodies, attachments, raw keys, or HMAC secrets. Users can self-export (GET /v1/account/export) and self-delete (DELETE /v1/account?confirm=DELETE) for GDPR Art. 15 / Art. 17 / CCPA.
See docs/data-handling.md for the full retention table, log fields, user-rights endpoints, and the operator-side responsibilities (backups, TLS, at-rest encryption, log redaction, compliance).
Four things that aren't possible to bolt on without significant rework:
Inbound with no public URL. Agents authenticate with their API key and consume inbound mail over a WebSocket to /v1/agents/{email}/ws, by polling the REST API, or through the MCP tools β no webhook URL, no ngrok, no port forward. Useful for agents on developer laptops, edge devices, or behind corporate firewalls. SendGrid/Resend are webhook-only by design.
Email threading on every reply. e2a resolves the RFC
Message-ID / In-Reply-To / References graph within each agent mailbox,
emits correct reply headers, and keeps a server-owned topology identity for
message reads. conversation_id remains independent application
correlation. SendGrid/Resend never see inbound mailβthey are not
receiversβso they cannot provide this bidirectional mailbox-local topology
without you building the receiving side yourself.
Slug provisioning on a shared domain. Operators set shared_domain: agents.e2a.dev and users POST {"email": "my-agent@agents.e2a.dev"} to immediately register an agent on the shared domain with no DNS configuration. Possible because e2a is the SMTP relay claiming the domain β Resend / SendGrid are providers, not platforms, and can't multi-tenant a shared address space without you running the relay yourself.
Built-in review hold + auto-expiration. A per-agent protection policy (outbound gate action review, or the content scan) holds mail in pending_review state. Reviewers approve via dashboard, magic-link email, the MCP tools, or the API; a background worker auto-acts on expired holds based on the holds.on_expiry config. Magic-link tokens are HMAC-encoded β stateless, no session backend. With Resend / SendGrid you'd hold the message in your own DB, build the timer, the approval UI, and the stateless review tokens.
You can absolutely use SES / Resend / SendGrid as e2a's outbound SMTP for delivery to humans β that's what outbound_smtp in config.yaml is for. They complement e2a; they don't replace the inbound receiver, agent abstraction, or any of the layers above transport.
Email is the only protocol where every human already has an address and a working client. Webhooks / gRPC / MCP are great inside systems you control, but they don't reach Gmail or Outlook. If you want an agent that talks to humans (or to other organizations' agents) without forcing everyone to install a new client, email is the universal substrate.
e2a doesn't replace webhooks or MCP β your agent receives email through them. It bridges email's universal addressability to the structured-data world the agent code already lives in.
The relay discards any sender-supplied authentication claims and evaluates SPF, DKIM, and DMARC itself. For webhooks, verify X-E2A-Signature with the subscription's whsec_ secret before trusting the structured result; a forged POST then fails verification regardless of its claimed DMARC status.
Receivers verify with the SDK β construct_event(body, header, secret) / constructEvent(body, header, secret) does parse + HMAC verify in one call (or verify_webhook_signature(...) / verifyWebhookSignature(...) if you only need the boolean check). No API call back to e2a needed. If a signing secret leaks, rotate it via the dashboard; the previous secret keeps verifying through a 24h grace window, then stops. If it is stolen from the relay itself, treat the relay as compromised rather than trusting any webhook headers it emits.
Yes β and the extra steps are the point. Concretely:
Building those on top of bare Postfix is a real project. e2a is that project, open source.
If you want a full MTA, run an MTA β Postfix and Postal are great. e2a isn't trying to replace them at the SMTP transport level (it uses go-smtp for receiving and dial-out for sending). The value is the layer above transport: the auth model, agent abstraction, signed delivery contract, retry policy for webhook failures, HITL approval flow, SDKs and CLI. If you're comfortable operating an MTA and only need email plumbing, e2a may be more than you want. If you want the agent abstraction and signed identity layer prebuilt, that's what this is.
Two reasons:
ghcr.io/tokencanopy/e2a, reproduce the build, and confirm what's actually running.ghcr.io/tokencanopy/e2a image you can pull right now. Convenience features on the hosted side (the shared agents.e2a.dev domain, managed deliverability) are config + DNS, not closed-source extras.The hosted version at e2a.dev has paid tiers (a free tier plus paid plans); billing is opt-in on the hosted side β config (settable via env) points the OSS server at an external limits/billing sidecar, and the OSS code path stays unchanged. Self-hosting runs on generous default limits with no billing.
See CLAUDE.md for the full developer guide (architecture, tests, code generation, conventions).
Requires Docker.
Postgres comes up first (migrations run automatically), then the API server, then the dashboard. Four host ports:
:8080 β HTTP API:2525 β SMTP relay:3000 β Dashboard (Caddy + Next.js, proxies /api/* to the API server):8765 β Local MCP HTTP endpoint (what claude mcp add expects)Health check:
Open http://localhost:3000 in a browser to view the dashboard. Sign-in requires Google OAuth credentials configured in config.yaml; for an API-only smoke test you can skip the dashboard and use the bootstrap flow below.
Create your first user and API key (no OAuth required):
Save the key β it's only shown once. Register an agent and confirm it works:
To receive real inbound mail, point a domain's MX record at your relay host:
your-domain.com β server IPyour-domain.com β your-domain.com (priority 10)Then register and verify the domain through the API (see Domains). Without DNS, the API still works for testing β but external email won't reach your relay.
Upgrades and migrations. The e2a binary embeds
migrations/*.sqland auto-applies any pending ones at startup (tracked in aschema_migrationstable). When you upgrade e2a, restarting the container applies new schema migrations automatically β no manual step.E2A_MIGRATION_MODEcontrols this:auto(default, applies pending),verify(refuse startup and report pending), orskip(emergency surgery). Migrations are idempotent and non-destructive, so re-applying is safe.
Thread-identity upgrades include several
CREATE INDEX CONCURRENTLYmigrations. The direction-aware legacy-anchor indexes inspect existing message rows and can keep the first upgraded process in migration startup until each build completes; schedule the rollout with normal migration headroom and monitor startup logs. They take the migration advisory lock but do not block ordinary reads or writes.(The compose file also mounts
migrations/into Postgres' init directory, but that path only runs on first start with an empty data volume β the binary's startup auto-apply is what keeps an upgraded deployment current.)
By submitting a pull request, you certify the Developer Certificate of Origin for your contribution. Sign your commits with git commit -s.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/e2a-email-for-ai-agents-2)<a href="https://allmcps.com/mcp/e2a-email-for-ai-agents-2"><img src="https://allmcps.com/api/badge/e2a-email-for-ai-agents-2?style=directory" alt="E2a β email for AI agents on AllMCPs" /></a>