resolve_supersession
Is a part discontinued, and what replaces it? Follows the replacement chain to the latest live product.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sku | No | ||
| product_id | No |
Is a part discontinued, and what replaces it? Follows the replacement chain to the latest live product.
| Name | Required | Description | Default |
|---|---|---|---|
| sku | No | ||
| product_id | No |
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 burden of behavioral disclosure. It adds useful context that the tool follows a replacement chain to the latest live product, which is beyond a simple lookup, but omits permissions, error cases, and return format details.
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 two sentences, front-loaded with the core question and followed by the key behavior. It is efficient with no wasted words, though the question format is slightly informal.
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?
Given the lack of annotations, output schema, and parameter descriptions, the description is incomplete for an agent to call the tool correctly. It should explain what parameters to provide and what the return value includes (e.g., discontinued status and replacement details).
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?
The description makes no mention of the input parameters (sku and product_id), and schema description coverage is 0%. With two entirely undocumented parameters, the description fails to compensate for the schema gap.
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 states a specific action (checking if a part is discontinued and following the replacement chain) and resource (part/supersession chain). It clearly distinguishes the tool's core function, though it does not name or contrast with sibling tools like search_parts or check_compatibility.
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 provides no explicit guidance on when to use this tool versus alternatives. It implies usage when you need to know if a part is discontinued, but does not say when-not or mention the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.