by hawstein
AI-powered email composition and delivery via Resend API. Customize sender, reply-to, schedule. Integrate easily with Se
Lets AI assistants compose and send emails through the Resend API service. Supports attachments, scheduled delivery, and customizable sender/reply-to addresses.
Resend Email is a community-built MCP server published by hawstein that provides AI assistants with tools and capabilities via the Model Context Protocol. AI-powered email composition and delivery via Resend API. Customize sender, reply-to, schedule. Integrate easily with Se It is categorized under productivity, communication.
You can install Resend Email in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Resend Email is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Resend Email is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Resend Email has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Resend Email is the kind of server we cite when onboarding engineers to host + tool permissions.
Resend Email reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Resend Email is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Resend Email reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Resend Email reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Resend Email for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, Resend Email benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend Resend Email for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 70
A MCP server for Resend API. Let LLMs compose and send emails for you.
RESEND_API_KEY (string, required): Your Resend API keySENDER_EMAIL_ADDRESS (string, required): Sender email addressREPLY_TO_EMAIL_ADDRESSES (string, optional): Comma-separated list of reply-to email addressessend_email - Send an email using the Resend API
to (string): Recipient email addresssubject (string): Email subject linecontent (string): Plain text email contentfrom (string, optional): Sender email address (uses SENDER_EMAIL_ADDRESS if not provided)replyTo (array, optional): Reply-to email addresses (uses REPLY_TO_EMAIL_ADDRESSES if not provided)scheduledAt (string, optional): Scheduled email delivery timeattachments (array, optional): List of attachments, each attachment must have:
filename (string): Name of the attachment filelocalPath (string): Absolute path to a local file on user's computer (required if remoteUrl not provided)remoteUrl (string): URL to a file on the internet (required if localPath not provided)Note: Free tier available with 3000 emails per month.
The easiest way to use Resend MCP Server is through the Clinde desktop app. Simply download and install Clinde, then:
That's it! No technical knowledge required - Clinde handles all the installation and configuration for you seamlessly.
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"resend-mcp": {
"command": "npx",
"args": [
"-y",
"resend-mcp"
],
"env": {
"RESEND_API_KEY": "YOUR_RESEND_API_KEY_HERE (string, required)",
"SENDER_EMAIL_ADDRESS": "YOUR_SENDER_EMAIL_ADDRESS_HERE (string, required)",
"REPLY_TO_EMAIL_ADDRESSES": "YOUR_REPLY_TO_EMAIL_ADDRESSES_HERE (string, optional, comma delimited)"
}
}
}
}
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.