x402-format-thousands
Format Thousands: Format thousands.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Value to process |
Format Thousands: Format thousands.
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Value to process |
Changes observed during successful MCP inspections.
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: not the output separator convention (1,000 vs 1 000 vs 1.000), locale handling, input coercion, or return shape. For a formatting tool where the output format is the entire contract, this is a critical omission.
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 single sentence duplicates the tool name rather than front-loading useful information, so it is short but wasteful rather than concise. Nothing is over-explained because nothing is explained.
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 output schema and no annotations, the description is the only place to define what 'format thousands' produces, and it does not. An agent cannot predict the output string, which is the primary risk for a formatting utility.
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?
Single parameter with 100% schema description coverage, so the baseline of 3 applies. However the schema text ('Value to process') is generic and the description adds no clarification of accepted input forms (numeric string, decimals, negatives, existing separators).
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 is a verbatim restatement of the title/name: 'Format Thousands: Format thousands.' It conveys the verb (format) and object (thousands) but adds nothing, and does not distinguish it from close siblings such as x402-add-commas, x402-format-integer, or x402-number-humanize.
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 mention of alternatives among the many overlapping formatting siblings. An agent has no basis to pick this over add-commas or format-decimal beyond guessing 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.