Skip to main content
Glama

Hotel Bergsonne Allgäu Booking

Create a direct booking

create_booking
Idempotent

Create a hotel reservation at Hotel Bergsonne Allgäu. Call search_availability and get_price_quote for the same dates and room first: a stay that cannot be priced is rejected with NOT_AVAILABLE or INVALID_RATE, never confirmed at 0.00 EUR. roomId must be a room type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ). Requires dates, guest count, and complete customer details (name, email, phone, country). City tax (Kurtaxe) is already included in rates — do not add it. Optional addons use addonId from get_addons catalog. Set test: true for a sandbox dry run that validates everything without creating a reservation. Payment is requested after the booking was submitted via a secure payment link and is due no later than 7 days before arrival; cash is not accepted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
testNoSandbox dry run. When true, all validations (availability, rate, guest data) run and nothing is reserved, no payment link is sent.
addonsNoOptional add-on extras. Use addonId from get_addons catalog. Prices are resolved server-side.
adultsYesNumber of adults (>= 1)
rateIdYesRate ID from availability results
roomIdYesRoom type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ)
checkInYesArrival date
checkOutYesDeparture date
childrenNoNumber of children (default 0)
customerYesBooker details
idempotencyKeyNoClient-generated key. Retrying with the same key returns the original result instead of creating a second reservation.
additionalGuestsNoAdditional guest names

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations cover idempotency, non-destructive nature, and open-world behavior, but the description adds substantial non-obvious context: city tax is already included (do not add it), unpriced stays are rejected rather than silently confirmed at 0.00 EUR, and payment is requested post-submission via secure link with a 7-day-before-arrival deadline and no cash. It does not describe the return payload, though no output schema exists.

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 content is front-loaded with the core action and prerequisites before details. It is dense but each sentence carries operational value — no filler. Slightly long, but every clause addresses a real failure or workflow concern.

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 complex 11-parameter booking mutation with nested customer object and no output schema, the description covers prerequisites, validation behavior, tax handling, payment terms, and sandbox mode. The main gap is the absence of any description of what a successful booking returns (confirmation id, status).

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 baseline is 3, but the description goes further: it explains that roomId is a room-type abbreviation code (not a numeric ID) with examples, and that addons use addonId from the get_addons catalog. These clarify semantics beyond the schema text, which repeats the same hints but the description ties them into the workflow.

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?

The description opens with a specific verb and resource — 'Create a hotel reservation at Hotel Bergsonne Allgäu' — immediately distinguishing it from its sibling read-only tools (search_availability, get_price_quote, get_hotel_details, get_addons, get_fact_sheet). An agent can tell this is the write operation that follows the availability/quote tools.

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?

Explicit prerequisites are named: 'Call search_availability and get_price_quote for the same dates and room first.' It describes the failure mode (NOT_AVAILABLE / INVALID_RATE), routes to get_addons for addons, and explains the test flag for sandbox runs. This is textbook when-to-use and how-to-avoid-failure guidance.

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