CuratedMCP
OpenAI Agents SDK
Free

How to Install Resend MCP in OpenAI Agents SDK

Official Resend integration — send transactional emails, manage domains, and track delivery from your AI

What Resend MCP does

The official Resend MCP server lets AI agents send emails, manage audiences, and monitor deliverability through natural language. Perfect for automating transactional email workflows. Features: - Send emails with HTML or plain text content - Manage email templates and variables - Track email delivery, open, and click events - Manage sending domains and DNS verification - Handle bounces and complaints - Create and manage audience segments - Schedule email campaigns - Access email analytics and reporting Use cases: - "Send a welcome email to new users who signed up today" - "Check the delivery rate for yesterday's newsletter" - "Create a password reset email template with our branding" - "Add these 50 email addresses to the beta-users audience" Resend is the developer-focused email API trusted by Vercel, Clerk, and thousands of startups.

email
resend
transactional
smtp
delivery

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@resend/mcp"],
    env={
        "RESEND_API_KEY": "re_...",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details GitHub Open Config Editor

Install in other clients

For maintainers

If you maintain Resend MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/resend-mcp)](https://curatedmcp.com/marketplace/resend-mcp)