Skip to main content
Glama

x402-is-phone

Is Phone: Check whether a string looks like a phone number (7-20 digits, optional +,-,space,parens). Provide value.

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

C2.9/5.0
Behavior2/5

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

No annotations are supplied, so the description carries the full behavioral burden. It implies a heuristic prefix match ("looks like") and lists the accepted character set, which is useful, but it never states the return shape (boolean? matched substring?), whether this is stricter or looser than the sibling validators, or that it is a pure non-mutating check. Substantial disclosure is still missing for a tool with zero annotation coverage.

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

Conciseness3/5

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

The first sentence is dense and front-loaded with the matching rule, which is good. The second sentence, "Provide value.", is boilerplate that conveys nothing and reads as an artifact of a generic template.

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 simple boolean-style check the description covers the core rule, but with no output schema, no annotations, two indistinguishable parameters, and several overlapping phone siblings, the definition leaves real gaps in deciding when to call it and what comes back. It is minimally viable rather than 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 nominally 100%, so the baseline is 3, but the schema's own descriptions are placeholders ("Input to process", "Value to process") that distinguish nothing between the two string parameters. The description's "Provide value" weakly hints at the value parameter but never explains the difference between input and value or which one holds the phone string.

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 gives a specific verb and resource ("Check whether a string looks like a phone number") and even specifies the acceptance criteria (7-20 digits, optional +,-,space,parens), so the agent knows exactly what is being tested. It does not, however, distinguish itself from near-identical siblings such as x402-validate-phone, x402-phone-validator, or x402-is-phone's variants, so the sibling-differentiation half of a 5 is missing.

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?

There is no when-to-use guidance, no statement of when this heuristic check should be preferred over x402-validate-phone or x402-phone-validator, and no exclusions. The trailing "Provide value." gives no context about which parameter to supply.

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