Skip to main content
Glama

check_booking

Look up one existing booking so the guest can confirm when and where it is. Identify it with the booking_id and manage_token that create_booking returned; both also sit in the guest's confirmation email as the manage link, /booking/?token=. Returns the business, the local date and time with its timezone, party size, service and status: confirmed, pending_confirmation, cancelled, or for past bookings completed or no_show. Never returns the guest's name, email or phone. A wrong or missing token is refused without revealing whether the booking exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
booking_idYesThe booking_id create_booking returned, or the id in the guest's manage link.
manage_tokenYesThe token from the same booking's manage link. If the guest only has the link, take the token from its ?token= parameter.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations present, the description carries the full behavioral burden. It discloses many important traits: it returns specific fields, never returns guest PII, and refuses wrong or missing tokens without revealing whether a booking exists. This gives the agent strong expectations about privacy and error behavior.

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 compact and each sentence earns its place: purpose, parameter source, return contents, and security behavior. It is front-loaded with the main action and avoids redundant restatement of the tool name or schema.

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 lookup tool with no output schema, the description fully covers behavior, return fields, status values, parameter provenance, and error handling. Nothing essential is missing for an agent to select and invoke it correctly.

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 both parameters thoroughly. The description adds extra value by explaining that both parameters come from create_booking and are embedded in the guest's manage link, including the exact URL shape and how to extract the token from it.

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: 'Look up one existing booking' and names the concrete purpose. It naturally distinguishes itself from siblings like check_availability and create_booking by focusing on retrieving an existing booking.

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 clear context: use this tool when a guest needs to confirm an existing booking, and identifies the required credentials from create_booking or the confirmation email. It does not explicitly enumerate when not to use it or name alternative tools, but the conditions are unmistakable.

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