# AgentMail (verified)

AgentMail is the email inbox API for AI agents. It gives agents their own email inboxes, like Gmail does for humans.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add agentmail

# Browse available tools
npx -y @smithery/cli@latest tool list agentmail

# Get full schema for a tool
npx -y @smithery/cli@latest tool get agentmail list_inboxes

# Call a tool
npx -y @smithery/cli@latest tool call agentmail list_inboxes '{}'
```

## Direct MCP Connection

Endpoint: `https://agentmail.run.tools`

**Optional config:**
- `apiKey` (query) — Your API key from the [AgentMail Console](https://console.agentmail.to)

## Tools (11)

- `list_inboxes` — List inboxes
- `get_inbox` — Get inbox
- `create_inbox` — Create inbox
- `delete_inbox` — Delete inbox
- `list_threads` — List threads in inbox
- `get_thread` — Get thread
- `get_attachment` — Get attachment
- `send_message` — Send message
- `reply_to_message` — Reply to message
- `forward_message` — Forward message
- `update_message` — Update message

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get agentmail <tool-name>
```

---

Source: https://github.com/agentmail-to/agentmail-smithery-mcp
