Skip to main content
Glama

MailX Email Deliverability

Server Details

Check SPF/DKIM/DMARC/BIMI, blacklists, SMTP/IMAP; DNS lookups; generate email DNS records.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 16 of 16 tools scored. Lowest: 3.3/5.

Server CoherenceA
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.

Available Tools

16 tools
bimi_checkBIMI CheckA
Read-onlyIdempotent
Inspect

Check if a domain has a valid BIMI (Brand Indicators for Message Identification) DNS record. BIMI allows brands to display their logo next to authenticated emails in supporting email clients.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to check BIMI records for, e.g. example.com
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the description's burden is lowered. It adds context about what BIMI is but does not disclose behavioral specifics such as what constitutes 'valid', which DNS record type is queried, or edge-case behavior (e.g., nonexistent domain). No contradiction with annotations.

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 consists of just two sentences: the first states the primary action and the second provides brief background on BIMI. It is front-loaded, concise, and every sentence contributes useful context without excess.

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?

With no output schema, the description does not specify the return value or error behavior, which remains an ambiguity for the agent. However, given the tool's simplicity (one parameter, strong annotations) and the self-explanatory nature of a 'check', the description is minimally adequate for invocation, though not fully complete.

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 coverage is 100% for the single required parameter, with domain_name already including an example ('e.g. example.com') and format description. The description repeats the concept of 'domain' without adding any additional semantic detail beyond the schema, so the baseline of 3 applies.

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 'Check' and a specific resource 'valid BIMI DNS record', clearly distinguishing it from sibling tools like dkim_check, spf_check, and dns_lookup. It also expands the BIMI acronym to provide helpful context.

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 clearly states the tool's use case: checking if a domain has a valid BIMI record. However, it does not explicitly mention when to use this tool over alternatives or provide exclusions, though the niche nature of BIMI makes the intended use fairly obvious.

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

blacklist_checkBlacklist CheckA
Read-onlyIdempotent
Inspect

Check if a domain or IP address is listed in popular email blacklists (DNSBLs). Being blacklisted can severely impact email deliverability.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain name or IP address to check against blacklists, e.g. example.com or 1.2.3.4
Behavior3/5

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

The description states the core behavior (checking blacklists) and adds context about email deliverability impact. With strong annotations (readOnlyHint=true, idempotentHint=true), the description doesn't need to repeat safety traits. It adds no additional behavioral details like rate limits or response format, so it meets the baseline but doesn't exceed it.

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 sentences, front-loaded with the action, and every word contributes. The second sentence provides useful rationale without being verbose.

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

Completeness4/5

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

For a simple one-parameter tool, the description adequately explains the purpose and context. However, since there is no output schema, the description could have mentioned what the tool returns (e.g., a list of blacklists or a boolean), which would make it more complete. This is a minor gap.

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 coverage is 100% since the only parameter has a description. The description does not add any new information about the parameter beyond what the schema already provides. It follows the baseline for high schema coverage.

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 'Check' and identifies the resource 'domain or IP address' and the context 'listed in popular email blacklists (DNSBLs)'. This clearly distinguishes it from sibling tools like dns_lookup or spf_check, which have different purposes.

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 provides clear context by mentioning 'being blacklisted can severely impact email deliverability', implying it should be used when troubleshooting email deliverability. However, it does not explicitly name alternatives or state when not to use this tool compared to other DNS-related checks.

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

cname_lookupCNAME LookupA
Read-onlyIdempotent
Inspect

Look up CNAME (Canonical Name) records for a domain. Shows where a hostname aliases to.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to look up CNAME records for, e.g. www.example.com
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that it shows aliasing behavior, but does not disclose additional traits such as return format, potential errors, or rate limits. With annotations, the description is adequate but not enriching.

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 action ('Look up CNAME records') and a brief explanation of the output semantics. Every word earns its place; there is no redundancy or filler.

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

Completeness4/5

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

For a simple read-only DNS lookup with one well-documented parameter and no output schema, the description is sufficient to convey purpose and reasonable expectations. It could be more complete by describing the output structure, but overall it provides adequate context for an agent to invoke the tool correctly.

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?

The schema has 100% coverage with a clear description of the 'domain_name' parameter including an example. The tool description adds a tiny bit of context ('Shows where a hostname aliases to') but does not significantly enhance the parameter understanding beyond what the schema already provides. Baseline of 3 is 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 clearly states the specific verb and resource: 'Look up CNAME (Canonical Name) records for a domain.' This directly distinguishes it from sibling tools like MX, TXT, or PTR lookups by naming the exact record type, fulfilling the requirement for a specific and distinguishing purpose.

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 provides clear context that this tool is for CNAME record lookups and explains what it does ('Shows where a hostname aliases to'). However, it does not explicitly mention alternatives or exclusions, such as 'for general DNS records, use dns_lookup.' This gives a clear scope without explicit when-not-to-use guidance.

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

dkim_checkDKIM CheckA
Read-onlyIdempotent
Inspect

Check if a domain has a valid DKIM (DomainKeys Identified Mail) DNS record for a given selector. DKIM allows the receiver to verify that an email was sent by the domain owner.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to check DKIM records for, e.g. example.com
dkim_selectorYesThe DKIM selector to look up, e.g. google, default, selector1
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the DKIM background and the selector requirement but does not detail result format or rate limits. This is acceptable given annotation coverage, but the added behavioral context is limited.

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?

Two sentences with front-loaded function: the first sentence states the purpose, the second provides useful background. No wasted words.

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

Completeness4/5

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

The tool is a simple DNS check with annotations covering safety and full schema for parameters. The main gap is that the description doesn't specify the output format or what 'valid' means in the response, but for a check tool this is somewhat implied. Overall, it is largely complete for its complexity.

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 coverage is 100%, with both parameters (domain_name and dkim_selector) fully described. The description does not add meaning beyond the schema, so the baseline of 3 is 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 clearly states the tool checks for a valid DKIM DNS record for a given selector, with a specific verb ('Check') and resource (domain + DKIM selector). It distinguishes itself from sibling tools like dmarc_check and spf_check by focusing specifically on DKIM.

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 implies usage context—when you need to verify DKIM DNS records—but does not explicitly mention alternatives or when not to use it. Sibling tools exist for other DNS email checks, but the description provides no exclusions or alternative tool names.

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

dmarc_checkDMARC CheckA
Read-onlyIdempotent
Inspect

Check if a domain has a valid DMARC (Domain-based Message Authentication, Reporting & Conformance) DNS record. DMARC tells receiving servers what to do with emails that fail SPF or DKIM checks.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to check DMARC records for, e.g. example.com
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds a semantic context (DMARC's effect on email handling) but does not disclose behavioral specifics like checking the _dmarc subdomain or what 'valid' entails. It does not contradict annotations.

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?

Two sentences: the first states the tool's purpose, the second gives background context. No redundancy, filler, or inaccessible information. It is concise and front-loaded.

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

Completeness4/5

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

For a simple read-only DNS lookup tool with a single parameter and no output schema, the description is fairly complete. It explains what the tool does and why DMARC matters. A perfect score would require explicit mention of validation criteria or the _dmarc prefix, but these are not essential for basic usage.

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% — the single parameter domain_name is clearly documented with an example. The tool description adds no additional parameter-specific meaning beyond that, so a baseline score of 3 is 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 states a specific action and resource: 'Check if a domain has a valid DMARC ... DNS record.' This clearly distinguishes it from sibling tools like dkim_check, spf_check, or dns_lookup. It also adds helpful domain context about what DMARC does.

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

Usage Guidelines3/5

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

The description provides implicit usage context by explaining DMARC's role in email authentication, but it does not explicitly state when to use this tool versus alternatives (e.g., when to use dmarc_generate or spf_check). No exclusions or alternatives are mentioned.

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

dmarc_generateDMARC GeneratorA
Idempotent
Inspect

Generate a DMARC DNS record for a domain. Returns the record name, value, and type ready to be added to DNS.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe email address to receive DMARC aggregate reports, e.g. dmarc@example.com
domain_nameYesThe domain to generate a DMARC record for, e.g. example.com
dmarc_policyYesThe DMARC policy: none (monitor only), quarantine (mark as spam), or reject (block entirely)
Behavior4/5

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

The description adds value beyond annotations by disclosing that the tool 'Returns the record name, value, and type ready to be added to DNS', clarifying that it only generates the record and does not apply it. This complements the idempotentHint and the non-destructive nature, enhancing transparency.

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 a single, concise sentence that front-loads the primary action and then specifies the return value. No wasted words; every element serves a purpose.

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

Completeness4/5

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

For a straightforward generator with full schema and annotations, the description provides enough context: what it does and what it returns. It omits details like the exact DNS record format, but the schema and the simplicity of the tool make it sufficiently complete.

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% with each parameter well-explained (domain, email, policy). The tool description does not add further parameter details, but the schema already handles the heavy lifting, so the baseline 3 applies.

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 clearly states 'Generate a DMARC DNS record for a domain' with a specific verb and resource. It is easily distinguished from sibling tools like dmarc_check (which checks existing records) and spf_generate (which generates SPF records).

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

Usage Guidelines3/5

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

Usage is implied by the tool's name and description: use when you need to create a DMARC record. However, there is no explicit guidance on when to use this instead of alternatives like dmarc_check, or any exclusions or prerequisites.

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

dns_lookupDNS LookupA
Read-onlyIdempotent
Inspect

Look up all DNS records for a domain in one query. Returns A, AAAA, CNAME, MX, NS, TXT, and SOA records.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to look up all DNS records for, e.g. example.com
Behavior4/5

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

With annotations already indicating readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior, the description adds context by specifying the exact record types returned and the 'one query' behavior. This provides useful behavioral details beyond the annotations, such as the comprehensive response scope.

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 sentences, each earn its place: the first defines the action and scope, the second lists outcomes. No redundant wording, and key information is front-loaded.

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

Completeness4/5

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

No output schema exists, so the description appropriately explains return values by listing record types. It gives the essential context for a simple read-only tool, though it could specify the response format (e.g., JSON) or edge cases, but that is beyond minimal expectations. The sibling context and annotations further round out completeness.

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?

The schema description for domain_name already covers its purpose and format, giving 100% coverage. The tool description does not elaborate further on parameters, but since the schema is explicit, the baseline of 3 is appropriate; no additional semantic clarification is needed.

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 clearly states the tool's function: 'Look up all DNS records for a domain in one query.' It specifies the resource (domain), the action (look up), and the full scope of record types returned, distinguishing it from sibling tools that handle specific record types like cname_lookup or mx_lookup.

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 implies when to use the tool: when you need multiple record types at once ('all DNS records in one query'). It does not explicitly name alternatives, but the list of sibling tools and the explicit enumeration of record types make the usage context clear, though it lacks direct exclusions or alternative references.

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

imap_checkIMAP CheckA
Idempotent
Inspect

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

ParametersJSON 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
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.

imap_finderIMAP FinderA
Read-onlyIdempotent
Inspect

Look up IMAP server settings (host, port, encryption) for a given email provider. Use this to find the correct IMAP configuration for services like Gmail, Outlook, Yahoo, etc.

ParametersJSON Schema
NameRequiredDescriptionDefault
imap_provider_nameYesThe email provider name to look up, e.g. gmail, outlook, yahoo
Behavior4/5

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

Annotations already cover read-only and idempotent behavior. The description adds value by specifying the output fields (host, port, encryption) and confirming it's a lookup operation. No contradiction with annotations.

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?

Two concise, front-loaded sentences accomplish both purpose and usage guidance. No wasted words.

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

Completeness4/5

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

For a simple read-only lookup with one parameter and no output schema, the description covers the key aspects: what it does, what data it returns, and when to use it. It doesn't mention error handling or unknown providers, but that's not critical for this simple tool.

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 coverage is 100% as the parameter description explicitly documents the provider name and examples. The description adds no additional meaning beyond what the schema already states, so baseline 3 is appropriate.

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

Purpose4/5

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

The description uses a specific verb ('look up') and resource ('IMAP server settings'), clearly stating what the tool does. It doesn't explicitly name sibling tools like imap_check, but the focus on configuration settings rather than connectivity testing distinguishes it implicitly.

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 gives clear usage context with 'Use this to find the correct IMAP configuration' and provides example providers. It does not mention when NOT to use it or name alternatives, so it falls short of a 5.

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

mx_lookupMX LookupA
Read-onlyIdempotent
Inspect

Look up MX (Mail Exchanger) records for a domain. Returns the mail servers and their priorities.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to look up MX records for, e.g. example.com
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering safety. The description adds behavioral context by specifying the return value (mail servers and priorities), which is useful for the agent. It does not contradict annotations and adds meaningful details beyond them.

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 extremely concise, only two sentences. It front-loads the action ('Look up') and efficiently states the resource and return value. Every word earns its place, with no fluff or repetition.

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

Completeness5/5

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

The tool is simple with one parameter and no output schema. The description fully covers what the tool does and what it returns, which is sufficient for an agent to invoke it correctly. Given the simplicity and availability of annotations, no additional detail is needed.

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 explains the domain_name parameter with an example. The description does not add any additional parameter semantics beyond what the schema provides, so the baseline score of 3 is 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 'Look up' with a clear resource 'MX (Mail Exchanger) records' and a target 'for a domain'. It distinguishes itself from sibling tools like cname_lookup and dns_lookup by explicitly naming the record type, and adds the return value (mail servers and priorities).

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 context is clear: this tool is for looking up MX records, so an agent can infer when to use it. However, it does not explicitly mention alternatives or exclusions, such as 'for general DNS lookups use dns_lookup'. The clarity of purpose makes it obvious, but explicit guidance is absent.

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

ptr_lookupPTR LookupA
Read-onlyIdempotent
Inspect

Reverse DNS lookup. Find the hostname associated with an IP address. A valid PTR record is important for email sending reputation.

ParametersJSON Schema
NameRequiredDescriptionDefault
ip_addressYesThe IP address to look up, e.g. 8.8.8.8 or 142.250.80.46
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety and idempotency. The description adds domain context (email reputation) but no additional behavioral traits such as rate limits or error conditions. With annotations present, this is adequate but not rich.

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 three sentences, each adding value: it names the operation, defines the result, and gives practical context. No fluff or repetition.

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

Completeness5/5

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

For a simple one-parameter lookup tool with strong annotations and no output schema, the description sufficiently explains purpose and context. The email reputation note provides meaningful situational guidance, making it complete.

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?

The single parameter ip_address is fully documented in the schema with an example ('8.8.8.8 or 142.250.80.46'). The description does not add further parameter-level detail, but schema coverage is 100%, so the baseline of 3 applies.

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 clearly states 'Reverse DNS lookup' and specifies the action 'Find the hostname associated with an IP address'. This distinguishes it from sibling tools like dns_lookup or cname_lookup by emphasizing the inverse mapping from IP to hostname.

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 gives a clear context for use: 'A valid PTR record is important for email sending reputation'. This implies when to use it (e.g., email deliverability checks) but does not explicitly mention alternatives or when not to use it, so it falls short of a 5.

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

smtp_checkSMTP CheckA
Idempotent
Inspect

Test an SMTP server connection by attempting to connect and authenticate. If from_email and to_email are provided, the tool may attempt to send a test email. Only provide these fields if you are authorized to send from the account and intentionally want to test full sending capability.

ParametersJSON Schema
NameRequiredDescriptionDefault
hostYesThe SMTP server hostname, e.g. smtp.gmail.com
portYesThe SMTP port number, e.g. 587 for TLS, 465 for SSL, 25 for unencrypted
passwordYesThe SMTP password or app-specific password
to_emailNoOptional recipient email address for sending a test email
usernameYesThe SMTP username for authentication
encryptionYesThe encryption protocol: ssl, tls, or none
from_emailNoOptional sender email address for sending a test email
Behavior4/5

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

Beyond the annotations (readOnlyHint=false, idempotentHint=true), the description warns about the potential side-effect of sending an email and requires intentional authorization. It also uses 'may attempt' to indicate conditional behavior, which is transparent about the tool's side effects.

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 only two sentences, with the primary purpose front-loaded. The second sentence provides necessary caution about the optional email-sending feature without being verbose. Every word adds value.

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

Completeness4/5

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

Given the tool's complexity (7 params, no output schema), the description covers the essential action and the key side-effect. It lacks details on return values or failure modes, but the annotations and schema provide enough context. The warning about authorization is especially important for a tool that can send emails.

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

Parameters4/5

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

The input schema already describes all 7 parameters (100% coverage), but the description adds the crucial relationship that from_email and to_email together trigger a test email, and warns about authorization. This goes beyond the schema's individual parameter descriptions, adding semantic value.

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 clearly states the verb 'Test' and the resource 'SMTP server connection', specifying both connection and authentication. It distinguishes from siblings like imap_check and smtp_finder by focusing on SMTP connection testing, and the optional email-sending behavior is explicitly described.

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 provides clear context on how to use the tool, especially the condition for sending a test email and the authorization warning. It does not explicitly name alternative tools, but the purpose is so specific that the when-to-use is implied. It gives practical guidance for the optional fields.

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

smtp_finderSMTP FinderA
Read-onlyIdempotent
Inspect

Look up SMTP server settings (host, port, encryption) for a given email provider. Use this to find the correct SMTP configuration for services like Gmail, Outlook, SendGrid, etc.

ParametersJSON Schema
NameRequiredDescriptionDefault
provider_nameYesThe email provider name to look up, e.g. gmail, sendgrid, mailgun, outlook
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows it is a safe read operation. The description adds that it returns host, port, and encryption, but does not disclose additional behaviors such as network dependency or error handling. No contradiction with annotations.

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?

Two sentences, front-loaded with the action, and includes all necessary information without fluff. Every sentence earns its place.

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

Completeness4/5

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

The tool is simple with one parameter and no output schema, yet the description still mentions the expected return fields (host, port, encryption). It provides a clear scope for supported providers. Minor omissions like unsupported providers or error cases are acceptable given the simplicity.

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?

The schema description covers provider_name with examples (gmail, sendgrid, etc.), and the description reinforces this with examples like Gmail, Outlook, and SendGrid. No new meaning is added beyond what the schema already provides, so baseline 3 is 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 the specific verb 'look up' and identifies the resource as 'SMTP server settings (host, port, encryption)' for an email provider. It then gives examples (Gmail, Outlook, SendGrid) and differentiates from sibling tools like smtp_check (which tests) and imap_finder (which finds IMAP settings).

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?

Explicitly states 'Use this to find the correct SMTP configuration' and provides examples of providers, giving clear context for when to use the tool. However, it does not mention when not to use it or alternatives such as smtp_check for testing SMTP connectivity.

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

spf_checkSPF CheckB
Read-onlyIdempotent
Inspect

Check if a domain has a valid SPF (Sender Policy Framework) DNS record. SPF specifies which mail servers are authorized to send email on behalf of a domain.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to check SPF records for, e.g. example.com
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, covering the safety profile. The description adds a definition of SPF and the concept of 'valid', but does not disclose what happens when no SPF record exists, the return format, or any operational behavior like rate limits.

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 exceptionally concise: two sentences that front-load the action and resource, followed by a brief definition of SPF. Every word earns its place, with no redundancy or filler.

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?

Given the tool's simplicity and the rich annotations, the description is adequate but not complete. It lacks differentiation from sibling DNS tools and does not explain what 'valid' means in terms of return values or edge cases (e.g., no SPF record). For an agent selecting among many similar tools, this is a notable gap.

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?

The input schema fully documents the single domain_name parameter with an example, achieving 100% schema description coverage. The description itself adds no further parameter semantics, so the baseline 3 applies.

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

Purpose4/5

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

The description clearly states the tool checks if a domain has a valid SPF DNS record, using the specific verb 'Check' and a distinct resource (SPF). It is implicitly distinguished from sibling tools by focusing solely on SPF, but does not explicitly name alternatives.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus other DNS checks like dkim_check or dmarc_check. The description lacks any context, prerequisites, or exclusions, leaving the agent to infer usage solely from the tool name.

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

spf_generateSPF GeneratorA
Idempotent
Inspect

Generate an SPF DNS record for a domain based on the email provider being used. Returns the record name, value, and type ready to be added to DNS.

ParametersJSON Schema
NameRequiredDescriptionDefault
providerYesThe mail provider identifier, e.g. google, mailgun, sendgrid, postmark, amazon-ses
domain_nameYesThe domain to generate an SPF record for, e.g. example.com
hard_fail_booleanYesIf true, uses strict -all policy (reject unauthorized senders). If false, uses soft ~all (mark but deliver).
Behavior4/5

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

Annotations provide idempotency and non-destructiveness, and the description adds that the tool returns the record name, value, and type ready for DNS, which is useful given no output schema. It does not detail behavior for unsupported providers or external dependencies, but the openWorldHint annotation already suggests reliance on provider data.

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?

Two sentences with no fluff; the main action and output are stated first, making the description immediately understandable.

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

Completeness4/5

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

The description covers the core purpose, the basis for generation (provider), and the output format, which is essential since there is no output schema. It lacks explicit error conditions for unknown providers, but the parameter descriptions cover the inputs adequately for a simple generator.

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?

The input schema contains 100% parameter descriptions, so the baseline is 3. The description adds no additional parameter semantics beyond restating the provider-based logic, and the schema already defines domain and hard_fail_boolean clearly.

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 the specific verb 'Generate' with a clear resource ('SPF DNS record') and scope ('based on the email provider being used'), distinguishing it from sibling check tools like spf_check and from dmarc_generate by naming the record type explicitly.

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 clearly indicates when to use the tool ('based on the email provider being used') and what it produces. However, it does not explicitly mention alternative tools or exclusions, such as 'use dmarc_generate for DMARC records,' so it falls short of full usage guidance.

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

txt_lookupTXT LookupA
Read-onlyIdempotent
Inspect

Look up all TXT records for a domain. TXT records contain SPF policies, domain verification tokens, DKIM keys, and other metadata.

ParametersJSON Schema
NameRequiredDescriptionDefault
domain_nameYesThe domain to look up TXT records for, e.g. example.com
Behavior3/5

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

The annotations already declare readOnlyHint=true and idempotentHint=true, indicating a safe, non-destructive operation. The description adds that it returns 'all' TXT records for a domain, which is useful scoping, but does not disclose network behavior or response details. No contradiction.

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. The first states the action, the second provides valuable context on TXT record uses, making it informative without waste.

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

Completeness5/5

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

For a simple read-only DNS lookup with a single parameter, the description fully conveys the operation. The absence of an output schema means the return format need not be detailed, and annotations cover safety.

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?

The schema fully describes the domain_name parameter with a clear example. The description adds no additional parameter semantics beyond 'a domain'.

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 states a specific action ('Look up all TXT records for a domain') and clarifies the content of TXT records, distinguishing it from sibling record-type-specific tools like cname_lookup or mx_lookup and from general dns_lookup.

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

Usage Guidelines3/5

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

The description does not explicitly provide usage guidance or name alternatives. It implies this tool is for obtaining raw TXT records, but does not explain when to choose it over spf_check or dkim_check, which also deal with TXT record content.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    MCP server for email deliverability: validate SPF/DKIM/DMARC/BIMI, check blacklists, test SMTP/IMAP, look up DNS, and generate ready-to-deploy records for any major email provider. Ships with two one-click prompts (audit-deliverability, setup-dns). Public, no auth.
    17
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for IntoDNS.ai providing 36 free tools for DNS, DMARC, SPF, DKIM, BIMI, DNSSEC, MTA-STS, FCrDNS, blacklist and email security checks. Citation-grade report snapshots with content hashes. No API key required.
    36
    32
    2
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables DNS and email security analysis through passive and active scanning capabilities. Provides comprehensive domain security checks including SPF, DMARC, DNSSEC validation, MX record analysis, and SMTP connectivity testing.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources