Mailtrap Email Sending MCP

Author:@railsware
View on GitHub

Overview

Mailtrap Email API is a server tool for sending transactional emails, enabling seamless integration of email functionality into applications.

To use it, configure your environment with the required API token and sender email, then use the provided commands to send emails via the API.

Key features include easy integration for transactional emails, support for email parameters like CC and BCC, and configuration for different environments such as Claude Desktop, Cursor, and VS Code.

Common use cases are sending automated emails for user registrations, password reset notifications, and order confirmations or shipping updates.

FAQ: Mailtrap offers a free tier, with more features available on paid plans. It is designed for transactional emails, not bulk campaigns. For troubleshooting, verify your API token and email configuration, and consult the documentation.

Configuration

{
  "mcpServers": {
    "mailtrap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-mailtrap"
      ],
      "env": {
        "MAILTRAP_API_TOKEN": "your_mailtrap_api_token",
        "DEFAULT_FROM_EMAIL": "your_sender@example.com"
      }
    }
  }
}