Skip to main content
The Drin MCP server (@drin00/mcp) exposes the whole API as 54 tools over the Model Context Protocol. Any MCP-capable client can send and receive email, manage domains and inboxes, and read metrics — with a single API key.

MCP clients

https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/anthropic.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=a51c92bf4636b8044606ac3c60556324

Claude Desktop

Add the mcpServers block to claude_desktop_config.json.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/anthropic.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=a51c92bf4636b8044606ac3c60556324

Claude Code

One command: claude mcp add drin ….
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/cursor.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=1ec5e98914c180fc6ffab919d95270af

Cursor

Drop it into ~/.cursor/mcp.json (or per-project .cursor/mcp.json).
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/openai.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=a01e939731707699cf2076e1daf36ca0

Codex / ChatGPT

Register the server in your Codex MCP config.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/googlegemini.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=663e8dc6ed520ab80fcb6a80f08a2e5e

Gemini

Wire the same mcpServers block into Gemini’s tool config.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/visualstudiocode.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=40634d518d5c2e023e8dfb2866fcebdf

VS Code / Windsurf

Same block — VS Code keys it under servers in .vscode/mcp.json.

Claude Desktop & Cursor

The config is identical — paste it, set your key, restart the client.
{
  "mcpServers": {
    "drin": {
      "command": "npx",
      "args": ["-y", "@drin00/mcp"],
      "env": { "DRIN_API_KEY": "drin_xxx" }
    }
  }
}

Claude Code

claude mcp add drin -e DRIN_API_KEY=drin_xxx -- npx -y @drin00/mcp

Framework adapters

Not using MCP? The same key plugs into the agent frameworks you already build in.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/langchain.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=1d2d8f1149362fa81412c976af0ddfe4

LangChain

Ready-made tools wired to your Drin key — send, read threads, and reply.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/n8n.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=3afe4bbcb8c4d923223cc4b8bac395b9

n8n

Trigger sends and route inbound mail in a no-code workflow.
https://mintcdn.com/drin/yBW6bGNHvna53cF7/images/agents/vercel.svg?fit=max&auto=format&n=yBW6bGNHvna53cF7&q=85&s=e9055e024cc694c23fc2f36bcb328afc

Vercel AI SDK

Register Drin as a tool the model can call from a Next.js app.

CrewAI / AutoGen

Hand a crew of agents a shared inbox they can read and reply from.
The MCP server acts with the full authority of the key you give it. Scope the key to a single project where you can, and store it in the client’s env, never in source.