Skip to main content
Glama

Start a Tell & Go booking (opens checkout)

start_booking

Initiate a booking from a valid quote. Returns a hosted checkout URL that the human must open in their browser to enter payment details and confirm the reservation. IMPORTANT: This tool never handles or requests payment card data. The checkout URL is a hosted Stripe Checkout page (checkout.stripe.com) that the human traveller opens — payment is completed securely there. Call get_quote, then prebook_stay to obtain prebook_id and confirm locked terms. The checkout URL expires (see expires_at in the response) — inform the user to complete it promptly. After the human completes checkout, Tell & Go sends a confirmation email to the primary guest. If the total exceeds a budget the user stated, do NOT call this yet: tell them the price, say it exceeds their budget, and get explicit confirmation first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rate_idYesExact rate_id echoed by prebook_stay.
quote_idYesquote_id used for prebook_stay; must match exactly.
residencyYesExact residency echoed by prebook_stay.
journey_idNoContinuity handle returned as journey_id in previous Tell & Go tool results. Always pass the most recent journey_id you have received in this conversation.
prebook_idYesprebook_id from prebook_stay (format: pbk_xxx). Raw quote IDs and supplier book hashes are rejected.
option_tokenYesExact option_token echoed by prebook_stay.
special_requestsNoSpecial requests for the property, e.g. 'Honeymoon celebration, late check-out if possible'
additional_guestsNoAdditional guest names (optional, maximum 10)
primary_guest_emailYesPrimary guest's email address — confirmation and pre-arrival emails go here
primary_guest_phoneNoPrimary guest's phone number (optional but recommended)
primary_guest_last_nameYesPrimary guest's last name
primary_guest_first_nameYesPrimary guest's first name

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Annotations declare readOnlyHint=false and openWorldHint=true, but the description adds crucial behavioral context: it never handles payment card data, returns a hosted Stripe URL that expires, and triggers a confirmation email. These details go beyond annotations to clarify side effects and limitations, which is essential for an agent to manage expectations.

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 description is moderately long but each sentence carries value, from the core purpose to the budget warning. It is front-loaded with the primary action and outcome, and the warnings are placed appropriately. Slightly verbose but justified by the complexity.

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

Completeness5/5

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

For a tool with 12 parameters and a multi-step flow, the description covers the prerequisites, the checkout flow, expiration, email confirmation, and a budget guardrail. It mentions expires_at in the response, and no output schema exists, so the description covers all essential context an agent needs to call it correctly.

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

Parameters3/5

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 each parameter. The description does not add meaning beyond the schema; it mentions prebook_id format (pbk_xxx) but that is already in the schema. Baseline 3 is appropriate.

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

Purpose5/5

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

States a specific verb+resource: 'Initiate a booking from a valid quote.' Clearly distinguishes from siblings like prebook_stay (prerequisite) and cancel_booking. It also explains the outcome (returns hosted checkout URL), making its role unambiguous.

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

Usage Guidelines5/5

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

Provides an explicit workflow: 'Call get_quote, then prebook_stay to obtain prebook_id and confirm locked terms.' Also gives a when-not-to-use condition: 'If the total exceeds a budget the user stated, do NOT call this yet.' This gives clear, actionable usage guidance and sequencing.

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.