Home / Email for AI agents
For AI agentsAn agent that can only send email is doing half a job. Real work needs a real inbox: a verifiable address to sign up for services, a place for confirmations and replies to arrive, and a way to react to them. Mektup gives an agent its own working mailbox - send, receive, and webhook-notified on new mail - through a native MCP server, and it stays a real inbox a human can open too.
An agent needs an email address for three reasons: identity (to sign up for and verify with the services it uses), communication (to send, receive, and hold threaded conversations), and memory (a durable, searchable record of what was said). Mektup delivers all three as an actual mailbox on real mail infrastructure - not a write-only endpoint - so incoming confirmations, replies, and threads genuinely land somewhere the agent can read and act on.
Mektup ships a native MCP server, so any MCP-capable agent (Claude Code, Cursor, Lovable, Replit, or your own) drives the whole cycle as tool calls - no glue code, no API keys pasted into generated source:
// point your agent at the Mektup MCP server { "mcpServers": { "mektup": { "command": "npx", "args": ["-y", "mektup-mcp"], "env": { "MEKTUP_API_KEY": "mek_live_..." } } } } // then the agent just calls tools, in its own session: create_mailbox({ domain: "acme.com", localPart: "agent" }) set_mailbox_webhook({ address: "agent@acme.com", url: "https://..." }) send_email({ from: "agent@acme.com", to: "...", subject: "..." }) list_messages({ mailbox: "agent@acme.com" })
New mail fires an HMAC-signed webhook the instant it arrives, so the agent reacts to replies and inbound messages without polling. Every tool maps one-to-one to a documented REST endpoint, so agents that don't speak MCP get the exact same capabilities over plain HTTP.
agent@yourcompany.com, with real DKIM, SPF, and DMARC generated for you.There's a complete, MIT-licensed example on GitHub - mektup-inbox-agent - an autonomous email agent that receives mail via the webhook, decides whether to reply or leave it for a human, and answers through the API from the same shared mailbox. Clone it, fill in four env vars, and it runs.
Getting started is free - 1 mailbox, 3,000 emails a month, 300 a day, and webhooks included, no credit card. See the full pricing, or how Mektup stacks up in Mektup vs AgentMail.
Point the agent at Mektup's MCP server or REST API. It can register a domain, create a mailbox, send mail, list and read incoming mail, and set a webhook so it's notified the instant new mail arrives - all as native tool calls in its own session.
Yes - that's the difference from a sending-only API. A Mektup mailbox is a real inbox. The agent reads incoming mail through the API and gets an HMAC-signed webhook on every new message, so it acts on replies without polling.
Yes. Unlike an API-only mailbox, a Mektup inbox is a real one - open it in Mektup's webmail, or add it to Outlook or Apple Mail over IMAP/SMTP - so you can see and manage exactly what your agent sends and receives.
No. Every account includes a free, instant inbox on a Mektup subdomain to start immediately. When you want a branded address, register any domain you own and Mektup hands back the exact DNS records to add.