A simple Node.js MCP server for sending emails and view statistics using TurboSMTP
Overview
what is turboSMTP?
turboSMTP is a simple Node.js MCP (Model Context Protocol) server designed for sending emails and viewing statistics using TurboSMTP, facilitating easy integration and testing.
how to use turboSMTP?
To use turboSMTP, clone the repository, install the dependencies, configure your TurboSMTP credentials, and start the server to expose an MCP API endpoint for sending emails.
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?
- Sending automated emails from applications
- Integrating email functionality into web services
- Testing email delivery and statistics in development environments
FAQ from turboSMTP?
- What are the requirements to run turboSMTP?
You need Node.js (v14 or higher) and a valid TurboSMTP account.
- How do I configure turboSMTP?
Set your TurboSMTP credentials in the configuration section of the code or use environment variables.
- Is there a test script available?
Yes, a test script is included to validate the email sending functionality.
Server Config
{
"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>"
}
}
}
}