phone_verify
Validate and format a phone number
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| number | Yes | ||
| country | No | ISO 3166-1 alpha-2 country code (e.g. US, FR), used to interpret a number with no leading +. |
Validate and format a phone number
| Name | Required | Description | Default |
|---|---|---|---|
| number | Yes | ||
| country | No | ISO 3166-1 alpha-2 country code (e.g. US, FR), used to interpret a number with no leading +. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it says almost nothing. It does not reveal whether 'validate' means syntax-only parsing or carrier/line-type lookup, whether the call is a network operation with rate limits, or what the formatted output looks like.
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?
A single front-loaded sentence with no waste or filler. It is efficient, though the brevity is partly under-specification rather than disciplined compression.
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?
With no annotations, no output schema, and an undocumented required parameter, the description leaves the agent unable to predict the return value or the accepted input format. A validator tool needs at least a sentence on what it returns and what 'valid' means.
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 50%: the 'country' parameter is documented in the schema, but 'number' has an empty description. The description never compensates by stating the expected input format (E.164, leading '+', digits only), which is the single most important thing an agent needs to call this tool correctly.
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?
States a specific verb pair ('Validate and format') and a clear resource ('a phone number'), so an agent immediately knows the operation. There is no sibling phone tool to disambiguate against, so the lack of explicit differentiation costs little, but it also does nothing to distinguish itself from email_validate/email_verify-style siblings.
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?
No when-to-use guidance, no prerequisites, and no statement of when this is preferred over a plain format check. The agent must infer usage entirely from the tool name and the fact that it is the only phone-related tool in the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.