cancel_booking
Cancel a reservation by booking ID and release the seat so it can be booked again.
Instructions
Cancel a booking and release the seat.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bookingId | Yes | Booking ID to cancel |
Cancel a reservation by booking ID and release the seat so it can be booked again.
Cancel a booking and release the seat.
| Name | Required | Description | Default |
|---|---|---|---|
| bookingId | Yes | Booking ID to cancel |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that a seat is released, which is a useful side effect. However, it does not cover permissions required, whether cancellation is reversible, or any rate limits. This is adequate but with clear gaps.
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 a single sentence that is front-loaded and contains no waste. Every word earns its place.
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 simple one-parameter mutation tool with no output schema and no annotations, the description is minimally adequate. It states the action and one effect but omits important behavioral context such as permissions, irreversibility, and error conditions.
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 single parameter bookingId is fully documented in the schema. The description adds no additional parameter meaning. Baseline 3 is appropriate when the schema does the heavy lifting.
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 verb and resource: 'Cancel a booking'. It also adds the outcome 'release the seat', which clarifies the effect. However, it does not differentiate from the sibling 'remove_booking', which likely serves a similar purpose.
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?
Usage is implied by the name and description, but there is no explicit guidance on when to use this tool versus alternatives like remove_booking. The description provides clear context but no exclusions or routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.