Skip to main content
Glama

Check an email address ($0.001)

email_check
Read-onlyIdempotent

PAID ($0.001 USDC via x402). Is this address worth sending to? Syntax, the domain's DNS (MX, then A/AAAA), disposable-provider and role-mailbox lists, a free-provider flag, a typo suggestion (gmial.com -> gmail.com), a normalized form (Gmail dots and +tags collapsed), and a risk verdict — low / medium / high / undeliverable — with reasons. No SMTP probe: it vouches for the DOMAIN, never the mailbox. An invalid address is a paid verdict (that IS the answer); a DNS failure answers 502 and is not charged. Without payment this returns the 402 challenge; the fiatdock-mcp npm package pays automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe email address to check
paymentNoBase64 of a single x402 v2 PaymentPayload (EIP-3009 transferWithAuthorization on Base USDC). OMIT it on the first call: the 402 you get back carries `howToPay.payloadTemplate` — the exact envelope to fill in — plus the price and the EIP-712 domain. Send it on the second call to complete the purchase; it is forwarded as the PAYMENT-SIGNATURE header, never as body data. Nothing is charged for the 402 itself, and a call that fails after payment settles nothing.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
mxYesMX hosts by priority (up to 5)
hasAYesThe domain has an A/AAAA record (mail may still be accepted without MX)
riskYesThe verdict: undeliverable (bad syntax / no domain / no mail host), high (disposable), medium (role mailbox or likely typo), low
emailYesThe address as given (trimmed)
hasMxYesThe domain publishes MX records
localYesThe part before @
domainYesThe part after @
isRoleYesA role mailbox (info@, support@, noreply@, …) rather than a person
methodYesExactly what was checked, and that no SMTP probe was made
reasonsYesWhy: invalid_syntax, domain_not_found, domain_accepts_no_mail (a null MX, RFC 7505), no_mx_record, disposable_domain, role_mailbox, likely_typo, free_provider
checkedAtYesISO time of the check
normalizedYesLower-cased; for Gmail, dots and the +tag in the local part removed
suggestionYesA corrected address when the domain looks like a typo of a common provider, else null
syntaxValidYesShaped like a real mailbox address
domainExistsYesThe domain answered DNS (MX or A/AAAA); false = no such domain
isDisposableYesThe domain is on the disposable-provider list (a list, not a census)
isFreeProviderYesA consumer webmail provider (gmail, outlook, …)
deliverableDomainYesSyntax valid AND the domain accepts mail at the DNS level — a statement about the DOMAIN, never the mailbox

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / properties / reasons / description
      Previous value: -"Why: invalid_syntax, domain_not_found, no_mx_record, disposable_domain, role_mailbox, likely_typo, free_provider"New value: +"Why: invalid_syntax, domain_not_found, domain_accepts_no_mail (a null MX, RFC 7505), no_mx_record, disposable_domain, role_mailbox, likely_typo, free_provider"
  2. Added

TDQS

A4.4/5.0
Behavior5/5

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

The description goes far beyond the readOnlyHint/openWorldHint/idempotentHint annotations by disclosing the paid nature, the 402-challenge flow, charging edge cases (invalid address = paid verdict, DNS failure = 502 not charged), and the absence of an SMTP probe. This is exactly the behavioral context an agent needs for a metered tool. No contradiction with annotations; readOnlyHint is consistent with 'no SMTP probe'.

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

Conciseness4/5

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

The description is dense and front-loaded with the critical facts (PAID, purpose) before details. Every sentence earns its place: charging, checks, no-SMTP limitation, error behavior, and payment automation. It is a long single paragraph of compound sentences, which slightly hurts scannability, but there is zero redundancy or filler.

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 paid tool with a two-call x402 protocol, the description is exceptionally complete: it covers what happens without payment (402 challenge), on DNS failure (502, not charged), on invalid input (paid verdict), and what the tool refuses to guarantee (mailbox existence). With an output schema present, the return-value summary (risk verdict with reasons) is also mentioned.

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 both the email and payment parameters are fully documented in the schema itself, including the detailed two-call payment flow. The tool description adds the high-level framing ($0.001, second-call completion), but this largely restates the schema's payment parameter description, so it adds marginal value beyond the structured data.

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 verb and resource ('check an email address') and enumerates the exact capabilities: syntax, DNS MX/A/AAAA, disposable/role lists, typo suggestion, normalization, and a risk verdict. It clearly distinguishes itself from the blockchain/x402 siblings (eth_balance, token_*, call_x402) by framing the purpose as 'Is this address worth sending to?'.

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 frames the use case clearly ('Is this address worth sending to?') and includes an implicit when-not: 'No SMTP probe: it vouches for the DOMAIN, never the mailbox' instructs the agent that this tool is for deliverability-risk assessment, not mailbox confirmation. No explicit alternative is named, but none of the 21 siblings are email-related, so cross-routing guidance is unnecessary.

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.