Skip to main content
Glama

booking_detail_mod

Read-only

Apply customer selections and return server-recalculated booking details.

Copy id_boat and id_tbf1 from search_boats. Sedna is the only source of truth for prices: never calculate totals in the LLM. Send selected extras, passenger count, currency, ports and payment options here, then present the complete updated summary returned by the server. This is a stateless price preview and does not save the selection. If the customer proceeds, repeat the complete selected_extras list in booking_create.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paxYesNumber of passengers.
dateEndYesEnd date in DD/MM/YYYY format.
id_boatYesExact yacht ID returned by search_boats.
id_tbf1YesExact pricing ID returned by search_boats.
dateStartYesStart date in DD/MM/YYYY format.
selected_extrasNoSelected extras with id_opt, selected and quantity.
arrival_selectedNoSelected arrival port ID.
currency_id_deviseNoCurrency ID present in booking_detail rates.
departure_selectedNoSelected departure port ID.
arrival_port_pay_optionNobase or now.
departure_port_pay_optionNobase or now.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description reinforces this with 'stateless price preview and does not save the selection.' It adds genuinely useful behavior beyond the annotations: the server is the single source of truth for prices and the LLM must never compute totals. It omits return-shape specifics, though for a preview tool the transparency is strong.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core purpose and the pricing-authority warning are front-loaded, and each sentence carries actionable instruction. It is slightly longer than strictly necessary but no sentence is filler, so structure is efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a stateless preview tool with no output schema, the description tells the agent to present 'the complete updated summary returned by the server,' which compensates for the absent output schema. Combined with the source-of-truth and statelessness notes, an agent has enough to call it correctly; only the distinction from the booking_detail sibling is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents each parameter. The description nonetheless adds real meaning by explaining that id_boat and id_tbf1 must be copied from search_boats and that selected_extras, pax, currency, ports and payment options are the inputs to be sent. This provenance guidance is not present in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: 'Apply customer selections and return server-recalculated booking details,' which tells the agent this is a recalculation/preview step. It names sibling tools search_boats and booking_create as data sources and next step, but does not differentiate from the near-identical sibling 'booking_detail', leaving ambiguity about which variant to pick.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives clear preconditions: copy id_boat and id_tbf1 from search_boats, and repeat the full selected_extras list in booking_create if the customer proceeds. It also clarifies this is a preview step that does not save. It stops short of stating when to choose this over the sibling booking_detail variant.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources