x402-feet-to-meters
Feet To Meters: Convert feet to meters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feet | No | Feet to process | |
| value | No | Value to process |
Feet To Meters: Convert feet to meters.
| Name | Required | Description | Default |
|---|---|---|---|
| feet | No | Feet to process | |
| value | No | Value to process |
Changes observed during successful MCP inspections.
Input schema / properties / feetAdded value: +{
+ "description": "Feet 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 provided, so the description carries the full behavioral burden, and it discloses nothing about input format (numeric string? precision? sign handling?), rounding, or output shape. For a pure deterministic conversion this is low-risk, but the description adds no behavioral context at all.
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?
One short sentence, front-loaded with the resource and direction, with no filler. It is appropriately sized for a trivial conversion tool, though it stops short of being fully informative.
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 two-parameter, no-output-schema conversion tool the bar is low, and the description names both units. But it leaves the 'feet' vs 'value' parameter ambiguity and the lack of any required field unexplained, which is the main gap an agent would hit.
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 technically 100%, but the schema itself is confusing: two string parameters, 'feet' ('Feet to process') and 'value' ('Value to process'), with zero required parameters, leaving it unclear which one is consumed. The description does not resolve this ambiguity, so it fails to compensate for a schema that does not effectively document intent.
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 states a specific verb and resource ('Convert feet to meters'), so an agent immediately knows the operation and direction. It does not, however, differentiate itself from the sibling x402-meters-to-feet or note the direction explicitly as a disambiguator.
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 guidance about when to use this tool versus the inverse conversion sibling or the generic x402-units-convert / x402-metric-imperial tools in the same family. Usage is only inferable from the name.
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.