zed-resend-mcp-server

danilo-leal/zed-resend-mcp-server

3.3

If you are the rightful owner of zed-resend-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Resend MCP Server Extension for Zed allows users to send emails directly from the Zed platform using the Resend service.

Resend MCP Server Extension for Zed

This extension provides a MCP server for sending emails via Resend directly from Zed. It uses the (unofficial) resend-mcp npm package.

Configuration

Minimal Configuration (API Key Only)

Add your Resend API key to your Zed settings.json:

{
  "context_servers": {
    "mcp-server-resend": {
      "settings": {
        "resend_api_key": "re_your_actual_api_key_here"
      }
    }
  }
}

Recommended Configuration (With Sender Email)

Ensure your sender email is from a verified domain. You can do that by going to Resend's dashboard Domain page.

{
  "context_servers": {
    "mcp-server-resend": {
      "settings": {
        "resend_api_key": "re_your_actual_api_key_here",
        "sender_email_address": "your-verified@yourdomain.com"
      }
    }
  }
}

Complete Configuration (All Options)

You can also configure reply-to addresses:

{
  "context_servers": {
    "mcp-server-resend": {
      "settings": {
        "resend_api_key": "re_your_actual_api_key_here",
        "sender_email_address": "your-verified@yourdomain.com",
        "reply_to_email_addresses": "replies@yourdomain.com,support@yourdomain.com"
      }
    }
  }
}

Features

FeatureStatus
Send plain text emailsSupported
Send HTML emailsSupported
Multiple recipientsSupported
CC and BCCSupported
Reply-to addressesSupported
Scheduled sendingSupported
Custom sender emailSupported
Environment-based configurationSupported
File attachmentsSupported
Remote URL attachmentsSupported
React Email templatesNot Supported
Batch sendingNot Supported
Email trackingNot Supported

Further Information