Skip to main content
Glama

x402-is-email

Is Email: Validate an email address format (local@domain.tld). Provide value or input; returns true for valid emails.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputNoInput to process
valueNoValue to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / input
      Added value: +{
      +  "description": "Input to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / value
      Added value: +{
      +  "description": "Value to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose the return contract ('returns true for valid emails') for an otherwise opaque boolean tool. It says nothing about the false case, malformed input handling, or whether either parameter is preferred, so it is partial rather than rich.

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?

One compact sentence, front-loaded with the verb and the accepted format. Nothing is padded, though the trailing 'Provide value or input' clause is vague enough that it partly wastes its slot.

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?

For a single-purpose boolean validator with no output schema and no annotations, the essentials (what it checks, what it returns) are covered. Still missing is the invalid-input behavior and any basis for choosing it over the several sibling email checkers, which matters in a list this dense.

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 nominally 100%, but both parameters are described only as 'Input to process' and 'Value to process', which is placeholder text. The description's 'Provide value or input' is the only signal that the two parameters are interchangeable aliases, and it is left implicit rather than explained.

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?

States a specific verb and resource ('Validate an email address format') and even gives the expected shape (local@domain.tld), so the agent knows exactly what is checked. It does not, however, distinguish itself from the many near-identical siblings (x402-validate-email, x402-email-validator, x402-email-verify), which an agent facing this tool list genuinely needs.

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?

'Provide value or input' hints at invocation but gives no when-to-use conditions, no statement of when this is preferable to x402-validate-email or x402-email-validator, and no note on what happens with an invalid address. There is no exclusion or alternative routing at all.

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.

Resources