redirect_trace
Full redirect chain trace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
Full redirect chain trace
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
Changes observed during successful MCP inspections.
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, yet it discloses nothing about redirect limits, request method (HEAD vs GET), timeout behavior, or what happens on loops/broken chains. The word 'Full' hints the chain is not truncated, but that is the only behavioral signal.
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?
Four words is maximally concise and front-loaded, but as a bare noun fragment it under-specifies rather than earns its brevity. It is a terse label more than a structured description.
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, no annotations, and an undescribed parameter, the description leaves the return shape (ordered hop list? final URL? status codes?) and failure behavior entirely unspecified. For a diagnostic tool this is a notable gap.
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?
There is a single required parameter, and schema description coverage is 0% — even the schema's own description string is empty. The description adds no meaning about the URL's format, whether it must be absolute, or whether it is normalized before tracing.
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 phrase 'Full redirect chain trace' names a specific resource (redirect chain) and operation (trace), so an agent can tell it apart from url_clean or url_reputation conceptually. However, it never explicitly differentiates itself from those URL-oriented siblings, keeping it short of a 5.
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?
The description offers no when-to-use guidance, no prerequisites, and no mention of alternative tools for URL inspection. An agent must infer entirely from the name that this is for diagnosing redirect paths.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.