MCP ExplorerExplorer

Zed Resend Mcp Server

@danilo-lealon 12 days ago
1 MIT
FreeCommunity
AI Systems
A Zed extension for the Resend MCP.

Overview

What is Zed Resend Mcp Server

zed-resend-mcp-server is an extension for Zed that provides a server for sending emails via Resend directly from the Zed environment. It utilizes the unofficial resend-mcp npm package.

Use cases

Use cases include sending transactional emails, newsletters, notifications, and any other email communications that need to be sent programmatically from Zed.

How to use

To use zed-resend-mcp-server, you need to configure it by adding your Resend API key and optionally, your sender email address in the Zed settings.json file. You can also configure reply-to addresses and other options for a complete setup.

Key features

Key features include support for sending plain text and HTML emails, multiple recipients, CC and BCC options, reply-to addresses, scheduled sending, custom sender emails, environment-based configuration, file attachments, and remote URL attachments.

Where to use

zed-resend-mcp-server can be used in various fields such as web development, email marketing, and any application requiring email communication directly from a Zed environment.

Content

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": "[email protected]"
      }
    }
  }
}

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": "[email protected]",
        "reply_to_email_addresses": "[email protected],[email protected]"
      }
    }
  }
}

Features

Feature Status
Send plain text emails Supported
Send HTML emails Supported
Multiple recipients Supported
CC and BCC Supported
Reply-to addresses Supported
Scheduled sending Supported
Custom sender email Supported
Environment-based configuration Supported
File attachments Supported
Remote URL attachments Supported
React Email templates Not Supported
Batch sending Not Supported
Email tracking Not Supported

Further Information

Tools

No tools

Comments