x402-http-headers
HTTP Headers: Parse and analyze HTTP headers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Url to process |
HTTP Headers: Parse and analyze HTTP headers.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Url to process |
Changes observed during successful MCP inspections.
Input schema / properties / urlAdded value: +{
+ "description": "Url to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and mostly fails it. It does not say whether the tool makes a live network request to the URL, what headers are examined, whether redirects/TLS are followed, or whether any errors are surfaced. The word 'parse and analyze' at least implies a non-destructive read, which is the only behavioral signal provided.
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 with a redundant 'HTTP Headers:' label prefix that repeats the tool name. It is appropriately brief and front-loaded, but brevity here reflects under-specification rather than efficiency.
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 that presumably performs a network fetch, with no annotations and no output schema, the description should explain fetch behavior and expected result shape. Neither is present, so an agent lacks the information needed to call it confidently and interpret results.
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 nominally 100%, but the sole schema description ('Url to process') is itself a tautology, and the tool description adds nothing to disambiguate it — it does not clarify whether the URL is fetched live, whether a header string is expected, or whether scheme/port matter. This leaves the one required behavior-determining input under-explained.
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?
It states a verb+resource ('parse and analyze HTTP headers'), which is clear enough on its own, but it does nothing to distinguish itself from near-duplicate siblings such as x402-http-analyze, x402-http-status, or x402-csp-parse. An agent cannot tell from this text whether it fetches a URL's headers, parses a header string, or scores header security. Purpose is stated but not differentiated.
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 when-to-use guidance at all: no mention of when to pick this over x402-http-analyze, no required inputs, no exclusions, no context about network access. The only hint of applicability is the 'url' parameter in the schema, which the description never references.
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.