MCP Server

Use AI assistants with Resent documentation and your account

Resent exposes Model Context Protocol (MCP) servers so AI clients can search docs and — with browser login — operate on your account.

Account MCP (browser OAuth)

Connect Claude, Codex, or Cursor to your Resent account. Auth works like Sentry MCP: add the URL, and your client opens Resent in the browser to sign in and approve access. No pasted Bearer token.

Server URL

https://resent.one/api/v1/mcp

Cursor

Add this to ~/.cursor/mcp.json, then connect — Cursor will open Resent for login:

{
"mcpServers": {
"resent": {
"type": "http",
"url": "https://resent.one/api/v1/mcp"
}
}
}

Claude Code

claude mcp add --transport http \
resent https://resent.one/api/v1/mcp

Codex

[mcp_servers.resent]
url = "https://resent.one/api/v1/mcp"

What account MCP can do

  • Create and update email templates
  • Add domains, refresh DNS, and verify
  • Send transactional email from verified domains
  • Inspect setup progress, API key prefixes, and recent sends

You can also manage the connector from Settings → MCP Connector.


Docs MCP (no account)

For documentation search only:

https://developers.resent.one/_mcp/server

Cursor

{
"mcpServers": {
"resent-docs": {
"type": "http",
"url": "https://developers.resent.one/_mcp/server"
}
}
}

Claude Code

claude mcp add --transport http \
resent-docs https://developers.resent.one/_mcp/server