email-send-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SENDER | Yes | Email address used as sender | |
| PASSWORD | Yes | App-specific password or password for SMTP |
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
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| send_emailB | A tool that sends emails based on the provided subject, body and receiver. It ensures secure and accurate email delivery while supporting multiple recipients and custom content. Ideal for automating email workflows. After collecting the information, it needs to be displayed to the user, and then selected to send after the user confirms it. |
| search_attachmentsC | Searches for files in a specified directory that match a given pattern. The search can be case-insensitive and returns the full paths of all matching files. This tool is useful for locating specific files or attachments within a directory structure. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| send_email | A tool for sending emails based on the provided subject, body, and recipients. It ensures that emails are delivered safely and accurately, and supports multiple recipients and customized content. After collecting the information, it needs to be displayed to the user, and then selected to send after the user confirms it. |
| search_attachments | Searches for files in a specified directory that match a given pattern. The search can be case-insensitive and returns the full paths of all matching files. This tool is useful for locating specific files or attachments within a directory structure. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools serve completely different purposes—searching files and sending emails—so there is no ambiguity or overlap between them.
Both tools follow a consistent verb_noun pattern (search_attachments, send_email) using snake_case, making them predictable and clear.
With only 2 tools, the server feels very minimal for an email-sending purpose. The inclusion of a generic file search tool rather than email-specific operations (e.g., list inbox, get message) suggests under-scoping.
For a server focused on sending emails, the send_email tool covers the core action, and search_attachments helps locate potential attachments. However, it lacks any tools for managing drafts, retrieving sent emails, or handling recipient lists, leaving notable gaps.