---
title: "Remote MCP Server"
slug: remote-mcp-server
description: "Resend offers a hosted, MCP server with OAuth authentication built in."
created_at: "2026-07-07"
updated_at: "2026-07-21"
image: https://cdn.resend.com/posts/remote-mcp.jpg
humans: ["diel-duarte", "gabriel-miranda", "felipe-freitag", "danilo-woznica"]
---

Agents are everywhere: your terminal, browser, and automation tools. We've been hard at work to bring our MCP server to everywhere your agents live.

Today, we're launching our hosted, **remote MCP server** at [mcp.resend.com/mcp](https://mcp.resend.com/mcp) with full OAuth support for authentication. Use it with all your agents today.

<YouTube videoId="GjLb4hFo2qg" />

With the remote MCP server:
-  Review request logs during incident response
-  Trigger transactional sends from CI/CD pipelines
-  Sync contact segments from Zapier or n8n
-  Draft support replies inside helpdesk workflows
-  Audit webhook deliveries from monitoring dashboards

## Install it everywhere

Hosting the server enables a single, trusted endpoint for all MCP clients. Streamable HTTP transport works anywhere remote MCP servers are supported.

<Tabs>

<Tab label="Claude">

Connect Resend from the [connector directory](https://claude.ai/directory/connectors/resend). The Connector bundles the MCP server and every Resend skill.

</Tab>

<Tab label="Claude Code">

```bash copy
claude plugin install resend@claude-plugins-official
```

The plugin bundles the MCP server and every Resend skill.

</Tab>

<Tab label="Cursor">

Open the command palette and choose **Cursor Settings** > **Tools & MCPs** > **Add Custom MCP**.

```json copy
{
  "mcpServers": {
    "resend": {
      "url": "https://mcp.resend.com/mcp"
    }
  }
}
```

</Tab>

<Tab label="Codex">

Install the [Resend plugin](https://chatgpt.com/plugins/plugin_asdk_app_6a3c407853888191beddc2151c2b6f8b?open_in_codex) in one click. It bundles the MCP server and every Resend skill.

</Tab>

<Tab label="Codex CLI">

```bash copy
codex mcp add resend --url https://mcp.resend.com/mcp
```

</Tab>

<Tab label="Warp">

In Warp's Settings, navigate to **Agents** > **MCP servers**, and click **+ Add** to add a new server.

```json copy
{
  "resend": {
    "serverUrl": "https://mcp.resend.com/mcp"
  }
}
```

</Tab>
</Tabs>

Our local [resend-mcp](https://github.com/resend/resend-mcp) server stays open source for self-hosting, air-gapped setups, and stdio clients. For all other MCP clients and surfaces, see the [MCP server docs](/docs/mcp-server). 

## Secure authentication

We've added OAuth authentication to the MCP server, so you can sign in with your Resend account when you connect. Choose your account and grant the necessary permissions.

<video
  src="https://cdn.resend.com/posts/remote-mcp-1.mp4"
  autoPlay
  muted
  loop
  playsInline
  className="extraWidth"
/>

You can view or revoke your MCP server's OAuth permissions from your Resend account's Team settings. 

<video
  src="https://cdn.resend.com/posts/remote-mcp-2.mp4"
  autoPlay
  muted
  loop
  playsInline
  className="extraWidth"
/>

If your client runs somewhere a browser login isn’t possible (a server, CI, scripts, or a headless agent), pass a Resend API key as a Bearer token instead of using OAuth. 

<Tabs>

<Tab label="Claude Code">

```bash copy
claude mcp add --transport http resend https://mcp.resend.com/mcp --header "Authorization: Bearer re_xxxxxxxxx"
```

</Tab>

<Tab label="JSON config">

```json copy
{
  "mcpServers": {
    "resend": {
      "url": "https://mcp.resend.com/mcp",
      "headers": {
        "Authorization": "Bearer re_xxxxxxxxx"
      }
    }
  }
}
```

</Tab>

</Tabs>

## Full coverage

The remote MCP server gives your AI agent native access to the full Resend platform through a single integration: emails, templates, broadcasts, contacts, logs, webhooks, and more.

[View a full list](/docs/mcp-server) of all features and supported clients.

## Log visibility

Each logged action includes a `user agent` trace, so you have full visibility on each logged action your agent takes with MCP.

<video
  src="https://cdn.resend.com/posts/remote-mcp-3.mp4"
  autoPlay
  muted
  loop
  playsInline
  className="extraWidth"
/>

## What's next

The remote MCP server opens up a new way to interact with Resend, allowing you to control your email campaigns and contacts from anywhere, to build custom integrations, and more.

It's also the foundation for one-click integrations across your favorite agents: the [Resend connector for Claude](/changelog/claude-connector) and the [Resend plugin for Codex](/changelog/codex-plugin).

The applications are nearly endless and we can't wait to see what you build with it.
