MCP.so
登录

turboSMTP

@debba

关于 turboSMTP

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

基本信息

分类

其他

传输方式

stdio

发布者

debba

提交者

Andrea Debernardi

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "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>"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

其他 分类下的更多 MCP 服务器