Skip to main content
Glama
gaddobenedetti

MCP Email

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
POP3_PORTYesPOP3 Server Port Number
SMTP_PORTYesSMTP Server Port Number
EMAIL_PASSYesEmail account password
EMAIL_USERYesEmail account username
POP3_SERVERYesPOP3 Server Address
SMTP_SERVERYesSMTP Server Address

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
pollEmailsB

Returms a list of all emails currenly in the inbox. Result is a list of dict objects representing the email in the current inbox, returning only a subset of the email data (e.g. subject, to address, from adresses) and without returning the message body.

getEmailsByIdC

Returms a list of emails currenly in the inbox based on ID. Result is a list of dict objects representing the selected emails.

Args: ids: A list of integer based message IDs

deleteEmailsByIdB

Deletes a list of emails currenly in the inbox based on ID. Note that deleting any emails invalidates the current order of IDs.

Args: ids: A list of integer based message IDs

sendTextEmailA

Sends an email in text format. No result is returned.

Args: fromAddress: String. The Originating address. toAddresses: List of strings. The destination addresses. subject: String. The subject line. body: String. The message body. All line breaks in the string should be encoded.

sendHtmlEmailB

Sends an email in HTML format. No result is returned.

Args: fromAddress: String. The Originating address. toAddresses: List of strings. The destination addresses. subject: String. The subject line. body: String. The message body.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 5 tools

Disambiguation4/5

pollEmails lists all inbox emails (subset, no body), while getEmailsById retrieves specific emails by ID. The distinction is mostly clear, though both return lists of email objects and the full-body retrieval behavior of getEmailsById is not explicit. Delete and send tools are clearly separate.

Naming Consistency4/5

All tools use camelCase with a verb-first pattern (pollEmails, getEmailsById, deleteEmailsById, sendTextEmail, sendHtmlEmail). The retrieval verbs 'poll' and 'get' differ slightly, but overall naming is predictable and consistent.

Tool Count5/5

Five tools provide a well-scoped minimal email client covering listing, ID-based retrieval, deletion, and two sending formats. Each tool has a clear purpose and the count is appropriate for the stated scope.

Completeness3/5

Core create/read/delete operations are present, but update operations (e.g., mark read/unread, flag, move) and search are missing. It is also unclear whether getEmailsById returns full email bodies, leaving a potential gap for reading message content.

Maintenance

ActivityInactive
ResponsivenessNo issues