Open Source ยท MIT Licensed ยท Self-hosted

Give your AI agents real email & SMS

Open source email, SMS & multi-agent coordination. Send, receive, search, organize โ€” with built-in security guardrails.

terminal

Three ways to integrate

Choose the integration that fits your stack. All three give you the same powerful capabilities.

OpenClaw Plugin

Drop-in skill for OpenClaw agents. 63 tools auto-registered.

// openclaw.yaml
skills:
  - agenticmail

# That's it. 63 tools ready.
MCP Server

Model Context Protocol server with 62 tools for any MCP client.

// Claude Desktop config
{
  "mcpServers": {
    "agenticmail": {
      "command": "npx",
      "args": ["agenticmail", "mcp"]
    }
  }
}
REST API

75+ endpoints. Use from any language, any framework.

// Send an email via REST
const res = await fetch(
  'http://localhost:3210/api/email/send',
  {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      to: 'user@example.com',
      subject: 'Hello from AI',
      body: 'Sent by my agent!'
    })
  }
);

Everything your agents need

A complete communication stack built specifically for AI agents.

Email

Send, receive, reply, forward, search & organize. Full IMAP/SMTP with relay and domain modes.

Send & receiveReply & forwardSearch & filterAttachments

SMS

Send and receive SMS via Google Voice integration. Give your agents a phone number.

Google VoiceSend & receiveConversation threadsNumber management

Multi-Agent

Coordinate between agents with call_agent, assign_task, and message_agent primitives.

call_agentassign_taskmessage_agentAgent directory

Security

Outbound guard scans for PII & credentials. Blocks HIGH severity, requires human approval.

PII detectionCredential scanningSpam scoringHuman-in-the-loop

Organization

Folders, tags, rules, templates, and signatures. Keep your agent's inbox structured.

Folders & tagsAuto-rulesTemplatesSignatures

Setup

Relay mode for quick start, domain mode for production. Cloudflare DNS automation built in.

Relay modeDomain modeCloudflare DNSOne command setup

Security guardrails built in

Every outbound message passes through the Outbound Guard. PII and credentials are detected and blocked before they leave.

Agent sends email
Outbound Guard scans
PII & credential check
Risk scoring
HIGH โ†’ blocked
LOW โ†’ delivered

HIGH severity findings require human approval before delivery. No exceptions.

Up and running in one command

No complex setup. No config files. Just run it.

quickstart
# Install and start AgenticMail
npx agenticmail

# Or with npm
npm install -g agenticmail
agenticmail start

# MCP mode (for Claude Desktop, etc.)
agenticmail mcp
Built for the OpenClaw ecosystem

Trusted by the agent community

AgenticMail is the communication backbone for AI agents built on OpenClaw. It's open source, self-hosted, and designed to be extended.

Open Source

MIT licensed. Fork it, extend it, own it.

Self-hosted

Your data stays on your infrastructure.

Extensible

Plugin architecture. Add your own tools.

Ready to give your agents real communication?

One command. Full email & SMS. Open source forever.