1. Conduid
  2. Communication
  3. Resend MCP
MCP server · Communication

Resend MCP

MCP server: Resend MCP

Unclaimed last commit a year ago comms
37Low

Scored 3 months ago · breakdown

About Resend MCP

Resend MCP is an MCP server published by pontusab in the Communication category: mCP server: Resend MCP. It has been installed 0 times through Conduid.

The repository has 5 stars and 6 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx resend-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Resend MCP

Powered by Claude · Grounded in docs

I know everything about Resend MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Resend MCP Server

A Model Context Protocol (MCP) server implementation for the Resend email service.

Features

  • Send emails using Resend through a standardized MCP interface
  • TypeScript support

Prerequisites

  • A Resend API key (get one at resend.com)
  • Node.js 18 or later

Installation

  1. Clone the repository
  2. Install dependencies:
npm install

Configuration

Create a .env file in the root directory with your Resend API key:

RESEND_API_KEY=your_api_key_here
PORT=3000  # Optional, defaults to 3000

Development Status

The server implementation is currently blocked by TypeScript type issues with the MCP SDK. The following issues need to be resolved:

  1. The Server class from @modelcontextprotocol/sdk is not properly exposing its request handling methods in the TypeScript types.
  2. The exact method name for handling requests needs to be determined (tried: handleRequest, handle, receiveMessage, receive, processRequest).

Next Steps

  1. Check the MCP SDK documentation or source code for the correct method name
  2. Update the TypeScript types in the SDK if they are incorrect
  3. Consider using JavaScript temporarily until the types are fixed

Usage

Development

bun run dev

Production

bun run start

Build

bun run build

API

The server exposes the following MCP function:

send-email

Sends an email using Resend.

Parameters:

  • from (required): Sender email address
  • to (required): Recipient email address
  • subject (required): Email subject
  • html (optional): Email content in HTML format
  • text (optional): Email content in plain text format

Example request:

{
  "method": "send-email",
  "params": {
    "from": "you@example.com",
    "to": "recipient@example.com",
    "subject": "Hello from MCP",
    "html": "<h1>Hello</h1><p>This is a test email.</p>"
  }
}

License

MIT

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Resend MCP

How do I install Resend MCP?

Run npx resend-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Resend MCP safe to use with an AI agent?

Its trust score is 37 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Resend MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.