Get Booking
neuron_get_bookingRetrieve details of a specific booking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Booking UUID |
neuron_get_bookingRetrieve details of a specific booking.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Booking UUID |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=false, so the safety profile is fully covered. The description adds no additional behavioral context such as error handling for missing bookings or the shape of returned details, which is minimal but acceptable for a simple read.
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?
One sentence, front-loaded with the action, and zero wasted words. It is exactly as long as it needs to be.
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 single-parameter read tool this is minimally complete, but with no output schema and no description of what 'details' are returned, an agent cannot predict the response shape. The annotations carry the safety contract, but the description could do more to set expectations.
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%, and the single parameter 'id' is documented as 'Booking UUID'. The description adds no meaning beyond the schema, so the baseline of 3 applies.
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?
States a specific verb ('Retrieve') and resource ('booking'), and the word 'specific' implies lookup by identifier, distinguishing it from list_bookings. However, it does not explicitly name or contrast with the closest sibling, list_bookings.
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 when-to-use guidance, no conditions, and no named alternatives. The agent must infer that this tool is for fetching a single booking by UUID rather than listing bookings.
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.