MCP.so
Sign In

turboSMTP

@debba

About turboSMTP

A simple Node.js MCP server for sending emails and view statistics using TurboSMTP

Basic information

Category

Other

Transports

stdio

Publisher

debba

Submitted by

Andrea Debernardi

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "turbosmtp": {
      "command": "node",
      "args": [
        "./mcp-turbosmtp-server.js"
      ],
      "env": {
        "TURBOSMTP_CONSUMER_KEY": "<TURBOSMTP_CONSUMER_KEY>",
        "TURBOSMTP_CONSUMER_SECRET": "<TURBOSMTP_CONSUMER_SECRET>",
        "TURBOSMTP_FROM_EMAIL": "<TURBOSMTP_FROM_EMAIL>"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is turboSMTP?

turboSMTP is a Node.js MCP (Model Context Protocol) server for sending emails and viewing statistics using the TurboSMTP email service. It exposes an MCP-compatible API endpoint, designed for easy integration and testing with other MCP-compatible services.

How to use turboSMTP?

Clone the repository, run npm install, then configure your TurboSMTP credentials in the email-service.js file (environment variables or a config file are recommended for production). Start the server with node mcp-turbosmtp-server.js. To send a test email, edit tests.js with the recipient and message details, then run node tests.js.

Key features of turboSMTP

  • Send emails and check statistics via TurboSMTP with a simple MCP API
  • Easy configuration and setup
  • Includes a test script for quick validation

Use cases of turboSMTP

  • Integrating email sending into MCP-compatible systems
  • Testing email delivery and TurboSMTP configuration
  • Monitoring email sending statistics through an MCP endpoint

FAQ from turboSMTP

What are the system requirements for turboSMTP?

Node.js v14 or higher and a valid TurboSMTP account with its credentials.

How do I configure my TurboSMTP credentials?

Set them in the appropriate configuration section of the email-service.js file. For production, you may want to use environment variables or a separate configuration file.

How can I test that turboSMTP is working?

Use the provided test script by editing tests.js with the recipient and message details, then run node tests.js.

Does turboSMTP require any external dependencies beyond Node.js and a TurboSMTP account?

No, the only dependencies are Node.js (v14+) and a valid TurboSMTP account. All code is included in the repository after running npm install.

Comments

More Other MCP servers