CodeMailbeta
Sent · Integrations

Connect CodeMail to your agents

Three install paths, one protocol. Claude Desktop, Cursor, Claude Web, or any MCP-speaking client can send mail and read your inbox with your permission.

Recommended

Claude Desktop — one-click install

Download the DXT bundle. Open it in Claude Desktop → Settings → Extensions and paste your API key once. Zero JSON, zero npm.

Download codemail.dxtWhat's a DXT?

Remote MCP (Claude Web · mobile)

Add CodeMail as a remote MCP server — no install, no API key. Approve once in your browser and it works everywhere you're signed in.

Server URL
https://mojqxitrudfrlfnnlymx.supabase.co/functions/v1/mcp
OAuth 2.1 + PKCE · clients discover us via /.well-known/oauth-authorization-server

Manual install (Cursor · Claude Code · custom)

For clients that don't support DXT yet. Mint a key, paste the JSON into your MCP config file.

Claude Desktop config ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "codemail": {
      "command": "npx",
      "args": ["-y", "@codemail/mcp-server"],
      "env": {
        "CODEMAIL_API_KEY": "<paste-key-here>"
      }
    }
  }
}
Cursor config ~/.cursor/mcp.json
{
  "mcpServers": {
    "codemail": {
      "command": "npx",
      "args": ["-y", "@codemail/mcp-server"],
      "env": {
        "CODEMAIL_API_KEY": "<paste-key-here>"
      }
    }
  }
}