AgenticEmail

MCP server

Give any model-based agent email as a native tool with the AgenticEmail MCP server.

AgenticEmail ships a hosted Model Context Protocol server so any MCP-compatible agent can read and send email as a native tool - no custom glue code.

Connect

Point your MCP client at the AgenticEmail server and authenticate with an API key. Scoped keys work here too, so an agent only sees the inboxes you grant it.

{
  "mcpServers": {
    "agenticemail": {
      "url": "https://mcp.agenticemail.com",
      "headers": {
        "Authorization": "Bearer ${AGENTICEMAIL_API_KEY}"
      }
    }
  }
}

Available tools

Once connected, the agent can call these tools directly:

  • create_inbox - provision a new addressable inbox.
  • list_inboxes - list inboxes the key can access.
  • send_email - send a message from an inbox, with attachments and threading.
  • list_messages - read parsed inbound and outbound messages.
  • search_messages - find messages across an inbox by query.

Example

With the server connected, an agent can handle an entire email task in one turn:

Create an inbox for the onboarding flow, send a welcome email to new@example.com, then watch for their reply.

The agent calls create_inbox, then send_email, and reacts to the reply through your webhook or the WebSocket stream described in Receiving email.

On this page