email-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SMTP_FROM | Yes | Sender email address | |
| SMTP_HOST | Yes | SMTP server hostname, e.g., smtp.gmail.com | |
| SMTP_PASS | Yes | SMTP auth password (app password) | |
| SMTP_PORT | No | SMTP server port, default 587 | 587 |
| SMTP_USER | Yes | SMTP auth username (email address) | |
| SMTP_SECURE | No | Use SSL/TLS? false for STARTTLS, default false | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| send_simple_emailB | Send a simple email. |
| send_custom_emailA | Send a custom email with full configuration options. |
| test_smtp_connectionB | Test SMTP connection. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| compose_email | Generate an email draft from intent, recipient name, and tone. Args: intent: What the email should communicate recipient_name: Name of the recipient tone: Desired tone (professional, casual, formal) |
| compose_reply | Generate a reply to an existing email. Args: original_email: The email being replied to intent: What the reply should communicate tone: Desired tone (professional, casual, formal) |
| compose_followup | Generate a follow-up email when no response has been received. Args: original_context: Context of the original message days_since: How long since the original was sent tone: Desired tone (professional, casual, formal) |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| config_status | Current SMTP configuration status (never exposes passwords). |
| providers | List of supported email providers with configuration details. |
TDQS
Scored across 3 tools
send_custom_email and send_simple_email both send emails, but their names and argument differences clearly distinguish a full-featured version from a simple one. test_smtp_connection is entirely separate.
All tools follow a consistent verb_noun pattern in snake_case: send_custom_email, send_simple_email, test_smtp_connection.
With 3 tools, the server is focused on sending emails and testing connections. While minimal, it covers the core functionality without unnecessary bloat.
The server covers sending (two variants) and connection testing, but lacks tools for receiving, listing, or managing emails, which are typical for an email server.