Price Per TokenPrice Per Token

Email Sender Server

by fahadbstech

GitHub 1 322 uses Remote
0

About

Email Sender Server enables sending emails via SMTP through a simple MCP tool interface. It allows AI agents and applications to programmatically send email messages using any SMTP-compatible email service. Key features of Email Sender Server: - Send emails via SMTP using the `send_email` tool with recipient, subject, and body parameters - Support for both plain text and HTML email content - Compatible with any SMTP provider including Gmail, Outlook, and custom mail servers - Configurable through environment variables for SMTP host, port, credentials, and sender address - Built on nodemailer for reliable email delivery

README

Email MCP Server

This project provides a Model Context Protocol (MCP) server for sending emails via a single tool, send_email.

Features

  • Exposes a single MCP tool: send_email (send an email via SMTP)
  • Uses nodemailer for SMTP email delivery
  • Environment Variables

    Set the following environment variables before running the server:

  • SMTP_HOST (required): SMTP server hostname
  • SMTP_PORT (optional, default: 587): SMTP server port
  • SMTP_SECURE (optional, default: false): Set to true for port 465, otherwise false
  • SMTP_USER (required): SMTP username
  • SMTP_PASS (required): SMTP password
  • SMTP_FROM (optional): Sender email address (defaults to SMTP_USER)
  • Installation

    npm install
    

    Running the Server

    npm start
    

    The server will start and listen for MCP requests on stdio.

    Integration with Claude Desktop

    To integrate this server with Claude Desktop, add the following to your claude_desktop_config.json:

    {
        "mcpServers": {
            "email-mcp": {
                "command": "node",
                "args": [
                    "D:\\projects\\Bitsol Projects\\email-mcp\\dist\\src\\index.js"
                ],
                "env": {
                    "SMTP_HOST": "smtp.gmail.com",
                    "SMTP_PORT": "587",
                    "SMTP_SECURE": "false",
                    "SMTP_USER": "",
                    "SMTP_PASS": ""
                }
            }
        }
    }
    

    Replace ` and with your actual SMTP credentials.

    Tool: send_email

    Arguments

  • to (string, required): Recipient email address
  • subject (string, required): Subject of the email
  • text (string, required): Plain text body of the email
  • html` (string, optional): HTML body of the email
  • Example Call

    {
      "name": "send_email",
      "arguments": {
        "to": "recipient@example.com",
        "subject": "Hello",
        "text": "This is a test email."
      }
    }
    

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81
    Saju Insights

    Saju Insights

    hjsh200219

    Saju Insights provides personalized Korean traditional Four Pillars of Destiny (Saju) fortune-telling based on birth data. It calculates destiny charts using the eight characters (four heavenly stems and four earthly branches) derived from birth year, month, day, and hour. Key capabilities include: - Birth chart calculation with automatic True Solar Time adjustment (Jintaeyangsi -30min correction) - Fortune analysis covering personality, career, wealth, health, and love prospects - Relationship compatibility analysis comparing two people's Saju charts - 10-year luck cycle (Daewon) predictions for long-term planning - Yongsin (favorable element) guidance on lucky colors, directions, and career paths - Lunar-solar calendar conversion supporting 1900-2200 with leap month handling - Daily fortune readings and seasonal power calculations - Multiple interpretation schools including Ziping, DTS, and modern methodologies

    Entertainment
    7 11