get_flight_booking
Get details of a specific flight booking/redemption.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| booking_id | Yes |
Get details of a specific flight booking/redemption.
| Name | Required | Description | Default |
|---|---|---|---|
| booking_id | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to repeat that. It adds the scope that redemptions are included, but does not disclose error behavior, authorization, or response format.
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?
A single, front-loaded sentence that contains no filler and communicates the operation and resource efficiently.
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 one-parameter read-only lookup with annotations covering the safety profile, the description is mostly sufficient. It could specify what 'details' includes or behavior for missing IDs, but the core call shape is clear.
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 schema has 0% description coverage for booking_id, and the description does not explicitly define it or explain where to obtain it. It only weakly ties the ID to 'specific flight booking', which is not enough compensation.
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 uses a clear verb ('Get') and specific resource ('flight booking/redemption'), and the word 'specific' distinguishes it from list_flight_bookings while 'flight' distinguishes it from get_hotel_booking.
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?
No guidance on when to use this tool versus list_flight_bookings or how it fits with add/update/delete variants. There are no explicit alternatives, prerequisites, or exclusion criteria.
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.