x402-to-ordinal
To Ordinal: Convert to ordinal.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | N to process | |
| value | No | Value to process |
To Ordinal: Convert to ordinal.
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | N to process | |
| value | No | Value to process |
Changes observed during successful MCP inspections.
Input schema / properties / nAdded value: +{
+ "description": "N 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 almost nothing: no return format, no handling of invalid/non-numeric input, no edge-case behavior for values like 11/12/13. The only signal is that it is a pure transformation, which is inferred from the name, not the text.
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 description is short only because content is missing — the sentence is grammatically broken and contains a stray double space. Brevity here stems from under-specification rather than efficient information packaging.
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 tool with two ambiguous parameters, no annotations, and no output schema, the description supplies no operational detail at all. An agent cannot confidently call this tool or interpret its result from the definition alone.
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?
Although nominal schema coverage is 100%, the schema descriptions themselves are tautological ('N to process', 'Value to process'), and the description adds nothing about which of the two parameters is the number or how they differ. The n-vs-value duplication is left unresolved for the agent.
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 reads 'To Ordinal: Convert to ordinal.' with the object of the conversion missing (note the double space), so it essentially restates the tool name rather than stating a specific verb+resource+input. An agent knows it produces an ordinal but not from what input or in what format.
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 exclusions, and no mention of neighboring tools such as x402-format-ordinal-suffix or x402-number-to-words that also produce ordinal-like output. Nothing tells the agent when this is the right choice.
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.