Resend MCP Server
Allows sending emails through the Resend email service using a standardized MCP interface
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Resend MCP Serversend an email to client@example.com with subject 'Project Update' and HTML content 'Here's the latest progress report.'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Resend MCP Server
A Model Context Protocol (MCP) server implementation for the Resend email service.
Features
Send emails using Resend through a standardized MCP interface
TypeScript support
Related MCP server: Resend MCP
Prerequisites
A Resend API key (get one at resend.com)
Node.js 18 or later
Installation
Clone the repository
Install dependencies:
npm installConfiguration
Create a .env file in the root directory with your Resend API key:
RESEND_API_KEY=your_api_key_here
PORT=3000 # Optional, defaults to 3000Development Status
The server implementation is currently blocked by TypeScript type issues with the MCP SDK. The following issues need to be resolved:
The
Serverclass from@modelcontextprotocol/sdkis not properly exposing its request handling methods in the TypeScript types.The exact method name for handling requests needs to be determined (tried:
handleRequest,handle,receiveMessage,receive,processRequest).
Next Steps
Check the MCP SDK documentation or source code for the correct method name
Update the TypeScript types in the SDK if they are incorrect
Consider using JavaScript temporarily until the types are fixed
Usage
Development
bun run devProduction
bun run startBuild
bun run buildAPI
The server exposes the following MCP function:
send-email
Sends an email using Resend.
Parameters:
from(required): Sender email addressto(required): Recipient email addresssubject(required): Email subjecthtml(optional): Email content in HTML formattext(optional): Email content in plain text format
Example request:
{
"method": "send-email",
"params": {
"from": "you@example.com",
"to": "recipient@example.com",
"subject": "Hello from MCP",
"html": "<h1>Hello</h1><p>This is a test email.</p>"
}
}License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Email infrastructure for AI agents — send, receive, search, and reply to email over MCP.
Hosted email for AI agents: create inboxes, send, receive, and reply over MCP with scoped API keys
Send transactional emails for AI agents via SMTP. Templates included.
Send transactional email and manage domains, audiences, and broadcasts from any MCP client.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP (Multi-Agent Conversation Protocol) Server for interacting with Resend's email API, auto-generated using AG2's MCP builder to enable sending emails through natural language.-
- AlicenseNot gradedqualityDmaintenanceEnables sending emails through the Resend service API. Provides a simple email sending tool that integrates with MCP-compatible clients.4 npmMIT
- AlicenseBqualityDmaintenanceEnables sending single and batch emails through the Resend API with support for HTML/plain text content, CC/BCC recipients, and custom tracking tags.17 npmApache 2.0
- AlicenseAqualityFmaintenanceAn MCP server for the Resend email API, enabling AI assistants to send emails, manage contacts, audiences, and domains through natural language.1823 npmMIT