x402-is-phone
Is Phone: Check whether a string looks like a phone number (7-20 digits, optional +,-,space,parens). Provide value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | Input to process | |
| value | No | Value to process |
Is Phone: Check whether a string looks like a phone number (7-20 digits, optional +,-,space,parens). Provide value.
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | Input to process | |
| value | No | Value to process |
Changes observed during successful MCP inspections.
Input schema / properties / inputAdded value: +{
+ "description": "Input to process",
+ "type": "string"
+}Input schema / properties / valueAdded value: +{
+ "description": "Value to process",
+ "type": "string"
+}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.
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.
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.
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.
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.
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.
Add one secure layer between your agents and this server.