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_inboxGet inbox info and recent emails
list_emailsList all emails with previews
read_emailRead full email content
send_emailSend email from your inbox
delete_emailDelete 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