MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Resend MCP
Resend MCP Logo - AI-Powered Development Tool for Cursor IDE

Resend MCP

Model Context Protocol Integration

Overview

This is a simple MCP server that sends emails using Resend's API. Why? Now you can let Cursor or Claude Desktop compose emails for you and send it right away without having to copy and paste the email content.

View Repository

Resend Features

  • •Send emails directly from Cursor or Claude Desktop
  • •Support for HTML email content
  • •Configurable sender email address
  • •Multiple reply-to addresses support
  • •Direct integration with Resend API
  • •Natural language interface for email composition

Resend Setup & Configuration

Requirements

  • •Node.js
  • •Resend API key
  • •Authorized sender domain or email in Resend
  • •Cursor IDE or Claude Desktop

Installation Instructions

# Local Build
git clone https://github.com/resend/mcp-send-email.git
cd mcp-send-email
npm install
npm run build

# Configure Sender Email
Edit index.ts and replace the default email with your authorized sender email

Configuration

# Cursor Settings (MCP Server Configuration)
Name = resend
Type = command
Command: node ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js --key=YOUR_RESEND_API_KEY --sender=OPTIONAL_SENDER_EMAIL_ADDRESS --reply-to=OPTIONAL_REPLY_TO_EMAIL_ADDRESS

# Claude Desktop Configuration
{
  "mcpServers": {
    "resend": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"],
      "env": {
        "RESEND_API_KEY": "your_api_key",
        "SENDER_EMAIL_ADDRESS": "optional_sender_email",
        "REPLY_TO_EMAIL_ADDRESSES": "optional_reply_to_emails_comma_delimited"
      }
    }
  }
}

Resend Available Tools

  • •send_email

Resend Required Inputs

RESEND_API_KEY

Type
string
Description
Your Resend API key for authentication
Required
Yes

SENDER_EMAIL_ADDRESS

Type
string
Description
Authorized sender email address
Required
No

REPLY_TO_EMAIL_ADDRESSES

Type
string
Description
Comma-separated list of reply-to email addresses
Required
No

to

Type
string
Description
Recipient email address
Required
Yes

subject

Type
string
Description
Email subject line
Required
Yes

html

Type
string
Description
HTML content of the email
Required
Yes

Resend Use Cases

  • •Automated email sending from AI conversations
  • •Quick email composition and sending without context switching
  • •Sending formatted HTML emails
  • •Business communication automation
  • •Email workflow integration
  • •Newsletter distribution
  • •Automated notifications and alerts

Frequently Asked Questions

This is a simple MCP server that sends emails using Resend's API. Why? Now you can let Cursor or Claude Desktop compose emails for you and send it right away without having to copy and paste the email content.
Node.js, Resend API key, Authorized sender domain or email in Resend, Cursor IDE or Claude DesktopView detailed requirements
Follow the installation instructions in the setup section above.View installation guide

Resend MCP provides the following tools:

  • •send_email

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.