get_my_bookings
Get your upcoming and recent bookings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of bookings to return. |
Get your upcoming and recent bookings.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of bookings to return. |
Changes observed during successful MCP inspections.
Input schema / properties / limit / descriptionPrevious value: -"Aantal op te halen boekingen."New value: +"Number of bookings to return."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 only says 'upcoming and recent bookings' without explaining what 'recent' means, whether the result is sorted, whether it includes cancelled bookings, or what the response shape looks like. This is a significant gap for a read tool with no annotation support.
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 short sentence that is front-loaded with the verb and resource. It is concise and easy to parse, though it could add a bit more context without becoming bloated.
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 tool with no annotations, no output schema, and only one optional parameter, the description is too thin. It doesn't clarify the meaning of 'recent', the default limit behavior, or the return format. An agent would need to infer too much to use it correctly.
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 schema already documents the 'limit' parameter. The description adds no additional meaning beyond what the schema provides, so the baseline 3 is appropriate.
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 clear verb ('Get') and resource ('your upcoming and recent bookings'), which distinguishes it from siblings like get_unsettled_bookings or get_booking_settlement_info. It doesn't explicitly name a sibling alternative, but the scope is specific enough for an agent to understand the tool's 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?
The description implies usage for retrieving the user's own bookings, but it doesn't explicitly state when to use this tool versus alternatives like get_unsettled_bookings or get_flight_statistics. There is no exclusion or alternative guidance, so the agent must infer the context from the wording.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.