Resend MCP

Live

BEARER TOKEN

TRANSACTIONAL EMAIL

Communication

Transactional email, broadcasts, and audience lists all run through Resend. Resend MCP gives your agent authenticated access scoped to the user who authorized it.

  • Acts as the user: access and write actions stay tied to the Resend account that authorized the agent.
  • Credentials stay vaulted: AES-256, resolved at request time, never in LLM context.
  • Scoped before every call: permissions enforced. 90-day audit trail.
Resend MCP
agent · Acme Q3
Run
Did the invoice email to acme.com deliver?
S
resend_emails_get
88ms
Resend agent
Delivered at 09:14 UTC, opened twice. The earlier attempt at 08:58 soft-bounced on a full mailbox.
Sources: 2 email events, 1 domain
resendmcp
3 calls
18:29
Message Claude...

Tools your messaging agent reaches for on Resend MCP, scoped per user.

CALL ANY TOOL
Send transactional email and broadcasts, manage domains, audiences, contacts, and templates through Resend's official MCP server.
resendmcp_add_contact_to_segment
Add contact to segment
Add a contact to a segment in Resend (by contact ID or email).
Parameters
Name
Type
Required
Description
segmentId
string
Required
Segment ID to add the contact to
contactId
string
Optional
Contact ID
email
string
Optional
Contact email address
resendmcp_batch_remove_suppressions
Batch remove suppressions
resendmcp_cancel_broadcast
Cancel broadcast
resendmcp_compose_broadcast
Compose broadcast
resendmcp_create_api_key
Create api key
resendmcp_create_contact
Create contact
resendmcp_create_domain
Create domain
resendmcp_create_template
Create template
resendmcp_disconnect_from_editor
Disconnect from editor
resendmcp_get_automation
Get automation
resendmcp_get_contact
Get contact
resendmcp_get_domain
Get domain
resendmcp_get_log
Log get
resendmcp_get_segment
Get segment
resendmcp_get_template
Get template
resendmcp_list_api_keys
List api keys
resendmcp_list_contact_properties
List contact properties
resendmcp_list_domains
List domains
resendmcp_list_received_email_attachments
List received email attachments
resendmcp_list_suppressions
List suppressions
resendmcp_manage_events
Manage events
resendmcp_publish_template
Publish template
resendmcp_remove_broadcast
Remove broadcast
resendmcp_remove_contact_property
Remove contact property
resendmcp_remove_suppression
Remove suppression
resendmcp_send_batch_emails
Send batch emails
resendmcp_update_api_key
Update api key
resendmcp_update_broadcast
Update broadcast
resendmcp_update_contact_topics
Update contact topics
resendmcp_update_template
Update template

For more tools, view docs.

Build your Agent
Drop the toolkit in, point it at the user, and your messaging agent can use Resend from the first run.
Python · LlamaIndex
import { ScalekitClient } from "@scalekit-sdk/node";
import { createReactAgent } from "@langchain/langgraph/prebuilt";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

// Resend MCP tools, scoped to the signed-in user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["resendmcp"], toolNames: [
"resendmcp_add_contact_to_segment",
"resendmcp_add_suppression",
"resendmcp_batch_add_suppressions"
] },
pageSize: 100,
});

const agent = createReactAgent({ llm, tools });
await agent.invoke({ messages: [{ role: "user", content: "Did the invoice email to acme.com deliver?" }] });
import OpenAI from "openai";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

// Resend MCP tools, scoped to the signed-in user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["resendmcp"], toolNames: [
"resendmcp_add_contact_to_segment",
"resendmcp_add_suppression",
"resendmcp_batch_add_suppressions"
] },
pageSize: 100,
});

const openai = new OpenAI();
const res = await openai.responses.create({
model: "gpt-5",
tools: tools.map((t) => t.openai),
input: "Did the invoice email to acme.com deliver?",
});
import Anthropic from "@anthropic-ai/sdk";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

// Resend MCP tools, scoped to the signed-in user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["resendmcp"], toolNames: [
"resendmcp_add_contact_to_segment",
"resendmcp_add_suppression",
"resendmcp_batch_add_suppressions"
] },
pageSize: 100,
});

const anthropic = new Anthropic();
const msg = await anthropic.messages.create({
model: "claude-opus-4-6",
max_tokens: 1024,
tools: tools.map((t) => t.anthropic),
messages: [{ role: "user", content: "Did the invoice email to acme.com deliver?" }],
});
import { Agent } from "@google/adk/agents";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

// Resend MCP tools, scoped to the signed-in user
const { tools } = await sk.tools.listScopedTools("user_123", {
filter: { connectionNames: ["resendmcp"], toolNames: [
"resendmcp_add_contact_to_segment",
"resendmcp_add_suppression",
"resendmcp_batch_add_suppressions"
] },
pageSize: 100,
});

const agent = new Agent({
name: "resendmcp_agent",
model: "gemini-2.5-pro",
instruction: "Act as the messaging agent for the signed-in user.",
tools,
});
await agent.run("Did the invoice email to acme.com deliver?");
Try these prompts
Paste any prompt into your agent to start using Resend.
Delivery checks
Copy the prompt
Copied
Did the invoice email to acme.com deliver?
Copy the prompt
Copied
List emails that bounced in the last 24 hours.
Copy the prompt
Copied
Show the sending domains and their verification status.
Sending
Copy the prompt
Copied
Send the onboarding email to the new signups audience.
Copy the prompt
Copied
Schedule the release broadcast for Thursday 9am.
Copy the prompt
Copied
Send a test of the password reset template to me.
Audience upkeep
Copy the prompt
Copied
How many contacts are in the product updates audience?
Copy the prompt
Copied
Remove unsubscribed contacts from the newsletter audience.
Copy the prompt
Copied
Which broadcast had the highest open rate last month?
SEE HOW AUTH WORKS
Users authorize Resend once. Their credentials stay vaulted, every call is checked, and every action is logged.
1
Authorize
Your user connects
Resend MCP
once. We tie it to their identity and the meetings they approved — no shared bot account, no org-wide access
Who:
user ‘A’
when:
Once per user
access:
Limited to user
2
Store
Their
Resend MCP
token lives in a vault scoped to them. User A's meetings are never reachable by an agent acting for user B, even on the same connection
vault:
encrypted
scope:
per-user
tokens:
auto-refreshed
3
Resolve
When your agent calls a
Resend MCP
tool, we fetch the right token server-side. It never touches your agent, never appears in the LLM context, never shows up in your logs
speed:
~40ms
check:
before every call
seen by:
nobody
4
Audit
Every
Resend MCP
tool call is logged — who triggered it, which meeting was fetched, what came back. 90 days of history, tied to the user who authorized it
history:
90 days
export:
SIEM-ready
logged:
every call
Test other agents
Same per-user auth pattern across other agents and MCP connectors. Working code, live demos, fork what fits.
Support and Ops Teams
Email-to-calendar agent
Reads scheduling intent out of Gmail threads, resolves the times everyone actually has free, and creates the event on the user's own Google Calendar. No shared service account.
Engineering Teams
DevOps assistant agent
Polls GitHub for failing checks and stale PRs, opens Linear issues for the ones that need work, and posts a daily digest to Slack. It acts as the engineer, not a shared service account.
Engineering Teams
Engineering standup agent
Pulls commits from GitHub and GitLab, tracks issue movement in Jira, and posts a per-engineer standup brief to Slack. Each engineer's activity is read on their own delegated OAuth.
Engineering Teams
Auto release notes agent
Reads merged GitHub PRs, groups them into structured release notes, publishes the page to Notion, and announces the release in Slack. Every call runs on the engineer's own delegated OAuth.
Test other agents
Same per-user auth pattern across other agents and MCP connectors. Working code, live demos, fork what fits.
OPS
Email-to-calendar scheduling agent
Read scheduling intent out of Gmail threads, resolve mutual free time, and create the Google Calendar event.
ENGINEERING
DevOps assistant agent
Poll GitHub for failing checks and stale pull requests, open Linear issues for the ones that need work, and digest to Slack.
ENGINEERING
Engineering standup agent
Pull commits from GitHub and GitLab, track Jira issue movement, and post a per-engineer standup brief to Slack.
ENGINEERING
Auto-release notes agent
Group merged GitHub PRs into structured release notes, publish the page to Notion, and announce the release in Slack.
Why Scalekit
Secure your agent's access. Connectors ship in minutes
01.
Shared tokens break per-user analytics
A shared token looks fine in a demo. In production every call looks like a service account. Scalekit resolves the real user credential so attribution, audit, and scope stay accurate.
// shared token
audit → bot_service_account
user_filter → broken

// scalekit
audit → user_abc
scope → enforced ✓
02.
Authentication is not authorization
03.
Multi-tenancy is architectural
04.
Resend today. Others tomorrow.
“Our agents act across Salesforce, Gong, Google Drive, and more, on behalf of every customer. Scalekit behind the scenes meant we can keep adding tools without ever rebuilding how credentials or tool calling work.”
Venu Madhav Kattagoni
Head of Engineering / Von
FAQs
Frequently Asked Questions
Does the agent access Resend as the user or as a shared key?
As the user. Each member authorizes once and Scalekit resolves their credential at request time. Audit logs attribute every action to that user, not a shared service account.
Where is the Resend bearer token credential stored?
In Scalekit's managed AES-256 token vault, namespaced per tenant. Refresh is automatic. Revocation is a single dashboard action. Credentials never appear in prompts, logs, or LLM context.
Can I limit what the agent is allowed to do in Resend?
Yes. Pass a tool name filter to listScopedTools so the messaging agent only sees the subset you authorize. Pre-API-call scope checks block out-of-policy actions before the request reaches Resend.
What happens when a user revokes Resend access?
The connection is invalidated on the next tool call. Subsequent requests for that user fail closed with a clear error. Other users in the tenant remain unaffected. The event is logged for audit.
Can the agent send from a domain we have not verified?
No. Resend rejects sends from unverified domains, and the connector surfaces that error rather than silently retrying. Domain verification stays a human step in your Resend dashboard, which is where it belongs.
Start in your coding agent
Up and running in one command
Install the Scalekit skill in your editor of choice. Connector, auth, tools, prompt, all wired up
Claude Code REPL
/plugin marketplace add scalekit-inc/claude-code-authstack
/plugin install agentkit@scalekit-auth-stack
Cursor Code REPL
# ~/.cursor/mcp.json
{
""mcpServers"": {
""resendmcp"": {
""url"": ""https://mcp.scalekit.com/resendmcp"",
""headers"": { ""Authorization"": ""Bearer $SCALEKIT_TOKEN"" }
}
}
}
Codex Code REPL
# ~/.codex/config.toml
[mcp_servers.resendmcp]
url = ""https://mcp.scalekit.com/resendmcp""
auth_env = ""SCALEKIT_TOKEN""
Copilot Code REPL
# .vscode/mcp.json
{
""servers"": {
""resendmcp"": {
""url"": ""https://mcp.scalekit.com/resendmcp"",
""type"": ""http""
}
}
}