ietf-imap-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| IETF_IMAP_USER | No | Username: 'anonymous' or Datatracker username | anonymous |
| IETF_IMAP_EMAIL | No | Email used as password for anonymous access | |
| IETF_IMAP_PASSWORD | No | Datatracker password (plaintext, not recommended) | |
| IETF_IMAP_MIN_INTERVAL | No | Minimum seconds between IMAP commands | 1.0 |
| IETF_IMAP_PASSWORD_CMD | No | Shell command to resolve password (e.g., op read ...) | |
| IETF_IMAP_PASSWORD_FILE | No | Path to file containing password | |
| IETF_IMAP_MAILBOX_PREFIX | No | Prefix for bare list names | Shared Folders/ |
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 |
|---|---|
| list_mailing_listsA | List IETF mailing-list mailboxes available over IMAP. Args:
pattern: IMAP LIST pattern, e.g. |
| search_listA | Search a mailing list, returning matching message summaries (newest first). Args:
list_name: Mailbox / list name, e.g. |
| page_listA | Page through a list's messages, newest first. Args:
list_name: Mailbox / list name, e.g. |
| get_messageA | Fetch a single message by UID (from a prior search/page result). Args:
list_name: Mailbox / list name, e.g. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
The tools are mostly distinct: list_mailing_lists discovers lists, search_list filters by criteria, page_list browses without filters, and get_message fetches a specific message. However, search_list with no criteria could overlap with page_list, though descriptions clarify the intended use.
All four tool names follow a consistent verb_noun pattern (list_mailing_lists, search_list, page_list, get_message) with underscore separation, making the naming predictable and easy to navigate.
With only 4 tools, the server is well-scoped for a read-only IMAP mailing list client. Each tool serves a clear purpose and the count is appropriate for the domain.
The core workflows are covered: discovering lists, searching or browsing messages, and fetching a full message. Minor gaps exist, such as no direct message count or raw header retrieval, but these are not critical for typical usage.