ride_reasons
Fetch cancellation reasons for a specific ride using its ride ID and token, so you can identify why a ride was canceled.
Instructions
Cancellation reasons
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | ||
| ride_id | No |
Fetch cancellation reasons for a specific ride using its ride ID and token, so you can identify why a ride was canceled.
Cancellation reasons
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | ||
| ride_id | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden, yet it discloses nothing about behavior. It does not say whether this is a read or write, what permissions the token needs, whether ride_id is required or optional, or what the response contains.
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 words is not conciseness but under-specification; there is no front-loaded statement of purpose or any structure to speak of. It wastes the entire description field.
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 2-parameter tool with no annotations and no output schema, the description is completely inadequate. Nothing an agent needs to invoke it correctly is present.
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 0% and the description adds no meaning for the two parameters (token, ride_id). The agent cannot tell whether ride_id must correspond to a cancelled ride or whether token is an auth credential.
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 'Cancellation reasons' is a noun fragment that essentially restates the tool name without a verb or scope. It hints at the resource (cancellation reasons) but does not clarify whether it lists them, looks them up for a ride, or returns reason codes, and it does nothing to separate the tool from siblings like ride_cancel.
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 guidance on when to call this tool, what conditions trigger it, or how it relates to alternatives such as ride_cancel or ride_history. The agent is left to guess entirely from the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.