The official MCP server to send emails and interact with Resend.
10K+
1 Tool
Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
Send emails directly from Cursor with this email sending MCP server.
| Attribute | Details |
|---|---|
| Docker Image | mcp/resend |
| Author | resend |
| Repository | https://github.com/resend/mcp-send-email |
| Attribute | Details |
|---|---|
| Dockerfile | https://github.com/slimslenderslacks/mcp-send-email/blob/ee47c6dc4776491226fd066380d052e24ca34fd4/Dockerfile |
| Commit | ee47c6dc4776491226fd066380d052e24ca34fd4 |
| Docker Image built by | Docker Inc. |
| Docker Scout Health Score | |
| Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/resend --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
| Licence |
| Tools provided by this Server | Short Description |
|---|---|
send-email | Send an email using Resend |
send-emailSend an email using Resend
| Parameters | Type | Description |
|---|---|---|
subject | string | Email subject line |
text | string | Plain text email content |
to | string | Recipient email address |
bcc | arrayoptional | Optional array of BCC email addresses. You MUST ask the user for this parameter. Under no circumstance provide it yourself |
cc | arrayoptional | Optional array of CC email addresses. You MUST ask the user for this parameter. Under no circumstance provide it yourself |
html | stringoptional | HTML email content. When provided, the plain text argument MUST be provided as well. |
scheduledAt | stringoptional | Optional parameter to schedule the email. This uses natural language. Examples would be 'tomorrow at 10am' or 'in 2 hours' or 'next day at 9am PST' or 'Friday at 3pm ET'. |
{
"mcpServers": {
"resend": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"REPLY_TO_EMAIL_ADDRESSES",
"-e",
"SENDER_EMAIL_ADDRESS",
"-e",
"RESEND_API_KEY",
"mcp/resend"
],
"env": {
"REPLY_TO_EMAIL_ADDRESSES": "YOUR_REPLY_TO_EMAIL_ADDRESSES",
"SENDER_EMAIL_ADDRESS": "YOUR_SENDER_EMAIL_ADDRESS",
"RESEND_API_KEY": "YOUR_RESEND_API_KEY"
}
}
}
}