x402-vat-validate
Vat Validate: Vat Validate
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vat | No | Vat to process | |
| input | No | Input to process | |
| number | No | Number to process |
Vat Validate: Vat Validate
| Name | Required | Description | Default |
|---|---|---|---|
| vat | No | Vat to process | |
| input | No | Input to process | |
| number | No | Number to process |
Changes observed during successful MCP inspections.
Input schema / properties / numberAdded value: +{
+ "description": "Number 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 burden of behavioral disclosure and delivers none. It does not say whether the tool is a pure read/check, what it returns (boolean, error list, normalized ID), whether it needs auth, or what failure 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?
Two-word tautology with no front-loaded information. It is neither appropriately sized nor informative; every character duplicates the tool name.
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, three ambiguous params, and zero descriptive text, the definition is completely inadequate for an agent to call it correctly. The description fails to supply the most basic information needed to distinguish VAT validation from arithmetic or formatting siblings.
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 description coverage is 100%, so the three params (vat, input, number) are each documented in the schema, setting the baseline at 3. However, the param descriptions themselves are near-placeholder ("Vat to process", "Input to process", "Number to process"), and the tool description adds zero additional meaning, such as which param is the actual VAT string versus an amount versus a country code.
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 "Vat Validate: Vat Validate", a pure tautology that restates the tool name twice. It names no verb+resource relationship beyond the title, and gives no hint of what validation means (VAT number format? EU VAT ID checksum? VAT rate lookup?). It does not distinguish this tool from the dozens of sibling validators (x402-validate-iban, x402-is-vin, x402-is-passport, etc.).
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, when-not-to-use, or alternatives are mentioned. The agent has no way to know whether this validates a VAT identifier, computes VAT on an amount, or something else, nor how it differs from the many other validation siblings.
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.