Skip to main content
Glama

Verbindlich buchen

create_booking

Erstellt eine VERBINDLICHE Buchung mit den echten Konditionen des angemeldeten Kontos (Company-Pass-Deckung bzw. Individualrabatt) — reserviert den Slot sofort. Erfordert einen API-Token (Authorization: Bearer …, erstellbar unter https://the-orbit.ch/account/api-tokens). Prüfe vorher mit check_availability, ob die Slots frei sind, und mit quote_booking den Preis. Ohne Token: request_booking für eine unverbindliche Anfrage nutzen. Raum-IDs aus list_rooms, Service-IDs aus list_services.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNoOptionale Bemerkungen
roomsYesGewünschte Räume mit Slot und Datum (Raum-IDs aus list_rooms)
titleNoOptionaler Titel des Anlasses
endTimeNoEndzeit 'HH:00' (09–18) — Pflicht bei EIN_TAG, verboten bei Mehrtagen
durationYesBuchungsdauer; bei Mehrtagen buchen alle Räume GANZTAGS
servicesNoOptionale Zusatzservices (Service-IDs aus list_services)
startTimeNoStartzeit 'HH:00' (08–17) — Pflicht bei EIN_TAG, verboten bei Mehrtagen
contactNameYesName der Kontaktperson
contactEmailYesE-Mail der Kontaktperson — hierhin geht die Bestätigung
contactPhoneNoOptionale Telefonnummer
participantsNoAnzahl Personen — Pflicht, wenn Verpflegung pro Person verrechnet wird

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description discloses key behaviors: creates a binding booking, reserves slots immediately, and requires authentication via API token. It does not detail error cases or persistence guarantees, but the core mutation action is well described.

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

Conciseness5/5

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

The description is concise and front-loaded. Every sentence adds essential guidance: purpose, prerequisites, process, and sibling differentiation. No fluff or redundancy.

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 11-parameter creation tool with no output schema or annotations, the description covers core aspects: prerequisites, input sources, and usage flow. It lacks details on return values and error handling, but overall it provides sufficient context for correct invocation.

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 coverage is 100%, so the description adds no extra semantic value beyond what the schema already provides. The schema's descriptions are thorough (e.g., 'Raum-IDs aus list_rooms'), so the description only minimally repeats this information.

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 clearly states it creates a binding booking ('Erstellt eine VERBINDLICHE Buchung') with real conditions and immediate slot reservation. It distinguishes itself from the sibling 'request_booking' tool, which is for non-binding requests.

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?

Explicitly tells when to use: after checking availability with 'check_availability' and pricing with 'quote_booking'. It also states the prerequisite of an API token and provides the alternative 'request_booking' when no token is available. Room and service IDs are sourced from sibling tools 'list_rooms' and 'list_services'.

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.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: checking availability, listing rooms, listing services, quoting, creating binding bookings, and requesting non-binding bookings. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., check_availability, list_rooms), making them predictable.

Tool Count5/5

With 6 tools, the set is well-scoped for a room booking system—enough to cover key operations without being excessive.

Completeness4/5

Covers all major booking creation steps (list, check, quote, book), but lacks tools for updating or canceling existing bookings, which is a minor gap.

Resources