Skip to main content
Glama

create_booking

Create a real reservation. Use a start value returned by check_availability. Never invent guest details — ask the person for their real name, email and phone first. If the result status is pending_confirmation, show the guest the confirmation_url.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
slugYes
emailYes
notesNo
phoneYes
startYesThe slot's `start` value, copied exactly as check_availability returned it.
sourceNoWhich assistant is booking. Defaults to other_ai. proof_video is our own channel: bookings made while filming a proof clip.
party_sizeYes
idempotency_keyNoRetry safety: pick any unique string for this booking attempt and reuse it on retries — the same key always returns the same booking, never a duplicate.

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 carries the full burden. It discloses the creation behavior, the pending_confirmation result state and the confirmation_url field, and warns against inventing guest details. It doesn't mention idempotency/retry behavior, but the idempotency_key parameter description covers that. Some notes on side effects or duplicate prevention could strengthen it, but the description is already unusually transparent for a creation tool.

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?

Three sentences, each earning its place: what the tool does, the critical usage protocol, and the expected result handling. Front-loaded with the purpose and immediately actionable instructions. No fluff or repetition.

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 9-parameter creation tool with no annotations and no output schema, the description gives the essential protocol: source of start, real guest data policy, and post-creation behavior. It doesn't enumerate every parameter (e.g., slug, party_size, notes, source), but the schema and parameter descriptions cover some of those. The pending_confirmation/confirmation_url guidance is especially valuable in the absence of an output schema. Missing: no explicit statement about idempotency/duplicate retries, though the parameter description covers it.

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 only 33%, with only start, source, and idempotency_key getting descriptions in the schema. The tool description compensates by explaining that start must be copied from check_availability, that guest name/email/phone must be real (collected from the person), and that pending_confirmation maps to confirmation_url. It doesn't explain party_size or notes semantics, but the description's coaching on guest details adds real meaning beyond the schema.

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 'Create a real reservation,' a specific action+resource. It also distinguishes itself from siblings by referencing check_availability, making clear this is the booking counterpart to the availability-checking tool. No ambiguity about its purpose.

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?

The description gives strong usage guidance: use a start value from check_availability, never invent guest details, ask for real name/email/phone first, and handle pending_confirmation results by showing confirmation_url. It doesn't explicitly say 'do not use this tool for checking availability,' but the reference to check_availability and the 'real reservation' framing make the boundary clear. Loses one point for not explicitly naming when to use a sibling instead.

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/5.0
Disambiguation3/5

check_availability, create_booking, and search are clearly distinct, but fetch and get_business overlap heavily: both retrieve business details, differing only by whether you have an id or a slug. An agent could confuse one for the other and still get largely the same information.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern: check_availability, create_booking, get_business. However, fetch and search are bare verbs that do not include their object, which is a minor deviation from the otherwise consistent style.

Tool Count5/5

Five tools is well-scoped for a booking-focused server. Each tool maps to a distinct step in the business discovery and reservation flow without unnecessary duplication or bloat.

Completeness4/5

The core guest journey is covered: search for a business, retrieve details, check availability, and create a booking. Missing booking lookup or cancellation tools are notable gaps, but they are not required for the primary make-a-reservation workflow.

Resources