A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
An MCP server that lets LLMs send emails via Resend .
A tiny, zero-config MCP (Model-Context-Protocol) server that lets LLMs send email through Resend.
Plug it into Claude Desktop, Cursor, or any other MCP client and start sending messages in seconds.
Grab the code
git clone https://github.com/HamnaCh456/Resend_MCP_server.git
cd resend-email-mcp
Install deps
pip install -r requirements.txt # or: uv pip install fastmcp resend python-dotenv httpx
Set your Resend API key
export RESEND_API=re_YOUR_RESEND_KE
Run the server
After configuring the settings.json(in case you are using Gemini CLI) file ,give command to LLM to send an email with other specifications.
| Variable | Default | Purpose |
|---|---|---|
RESEND_API | — | Required Resend API key |
PORT | 10000 | Port to bind when running in HTTP mode |
send_emailSend a single HTML email.
{
"subject": "Hello from MCP",
"to": "friend@example.com",
"from_email": "you@yourdomain.com",
"content": "<h1>Hi!</h1><p>Sent by an LLM 🤖</p>"
}
Return value: "Email sent successfully" or an error message.
@send_emailfastmcp, resend, python-dotenv, httpxInstall them quickly with:
pip install fastmcp resend python-dotenv httpx
| Issue | Fix |
|---|---|
| “Import error: resend” | pip install resend |
| “401 Unauthorized” | Check RESEND_API key and domain verification in Resend dashboard |
| Port already in use | export PORT=10001 or any free port |
Happy emailing!
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots