Inboxes
1 inbox
(Free: 1 max)
API Keys
Secret key
Loading...
Use this token to authenticate API and MCP requests. Keep it secret.
MCP Setup
โก Quick Setup โ Claude Code
Run this command in your terminal:
claude mcp add --transport sse docmailer "https://docmailer.org/mcp/sse?token="
Then just ask Claude: "Check my docmailer inbox"
Claude Desktop (JSON config)
Or add this to your MCP config file:
{
"mcpServers": {
"docmailer": {
"command": "npx",
"args": ["-y", "mcp-remote", ""]
}
}
}
Restart Claude after adding.
๐ฆ OpenClaw / Clawdbot / Moltbot
Add to your config under mcp.servers:
{
"name": "docmailer",
"type": "sse",
"url": ""
}
Or run: openclaw mcp add docmailer --type sse --url "YOUR_URL"
๐ข OpenCode
Add to your opencode.json config file:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"docmailer": {
"type": "remote",
"url": "https://docmailer.org/mcp",
"enabled": true,
"headers": {
"Authorization": "Bearer "
}
}
}
}
Restart OpenCode after adding. OAuth also supported if you prefer not to embed the token.
๐ค OpenAI Codex CLI
Add to your ~/.codex/config.toml:
[[mcp_servers]] name = "docmailer" transport = "http" url = "https://docmailer.org/mcp" [mcp_servers.headers] Authorization = "Bearer "
Or use OAuth: codex mcp add docmailer --transport http --url "https://docmailer.org/mcp"
Available tools
| get_inbox | Get inbox info and recent emails |
| list_emails | List all emails with previews |
| read_email | Read full email content |
| send_email | Send email from your inbox |
| delete_email | Delete an email |
Plan
Free
Free Plan
1 inbox ยท 50 emails/month ยท 24h retention
Features
Free
Premium
Inboxes
1
20
Emails per month
50
Unlimited
Email retention
24 hours
Configurable
REST API
โ
โ
MCP Server (Claude, Codex)
โ
โ
Send emails
โ
โ
Custom email address
โ
โ
Priority support
โ
โ
REST API
Example request
# Get your inbox curl https://docmailer.org/mcp/inbox \ -H "Authorization: Bearer "
Endpoints
| GET | /mcp/inbox | Get inbox + emails |
| GET | /mcp/emails | List all emails |
| GET | /mcp/email/:id | Read email |
| POST | /mcp/send | Send email |
| DEL | /mcp/email/:id | Delete email |