Skip to main content
Glama

MailX Email Deliverability

IMAP Check

imap_check
Idempotent

Test an IMAP server connection by attempting to connect and authenticate. Use this to verify email receiving configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYesThe IMAP password or app-specific password
usernameYesThe IMAP username for authentication
imap_hostYesThe IMAP server hostname, e.g. imap.gmail.com
imap_portYesThe IMAP port number, e.g. 993 for SSL, 143 for unencrypted
imap_encryptionYesThe encryption protocol: ssl, tls, or none

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses the core behavior (connect and authenticate) and adds the use-case context, but annotations are sparse (readOnlyHint=false, openWorldHint=true). It does not mention potential side effects, security implications, or what happens on success/failure. It exceeds a bare minimum but lacks rich behavioral detail.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the primary action and resource. Every word earns its place, with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and the schema covers all parameters, but there is no output schema and the description does not explain what the tool returns (e.g., success/failure indicators, error messages). This is a meaningful gap for a connection-test tool where the output is central to the caller.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all five parameters. The description adds no additional parameter-level meaning, making the baseline score of 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Test') with a clear resource ('IMAP server connection') and method ('attempting to connect and authenticate'). It clearly distinguishes this from sibling tools like smtp_check and imap_finder by focusing on connection verification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description states the primary use case: 'verify email receiving configuration.' This provides clear context for when to use the tool, though it does not explicitly name alternative tools or exclusionary conditions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Each tool has a specific purpose, but dns_lookup overlaps with cname/mx/ptr/txt lookups since it returns all record types. The 'check' tools validate records while 'lookup' tools merely retrieve them, which helps differentiate, but an agent could still confuse e.g., txt_lookup with dkim_check.

Naming Consistency3/5

Naming follows a noun_action pattern (e.g., bimi_check, mx_lookup) but uses inconsistent actions: check, lookup, finder, and generate. 'imap_finder' and 'smtp_finder' break the noun_verb pattern, and there is no uniform verb choice.

Tool Count4/5

With 16 tools, the count is at the upper edge of reasonable for an email deliverability domain. The individual DNS checks and server tests are justified, but some consolidation (e.g., a single lookup tool with record type parameter) could reduce redundancy.

Completeness4/5

Covers critical authentication checks (SPF, DKIM, DMARC, BIMI), blacklist checks, DNS lookups, and SMTP/IMAP connection tests. Missing DKIM generation and deeper reputation tools, but core deliverability verification is well-covered.

Resources