Skip to main content
Glama

create_booking

Creates a new booking (a check-in workflow) for one of the host's properties. Requires the write permission granted separately during sign-in. Ask the host to confirm the property and dates before calling this. Does not email the guest — call send_guest_checkin_link afterwards if a link should go out now.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
checkInYesCheck-in date, yyyy-MM-dd.
checkOutYesCheck-out date, yyyy-MM-dd.
guestNameNoGuest name, optional.
guestEmailNoGuest email, optional.
guestPhoneNoGuest phone, optional.
propertyIdYesThe property id, from list_properties.
templateIdNoCheck-in template id. Omit if the property has exactly one active (non-archived) template — it is picked automatically; otherwise this is required.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark readOnlyHint=false and destructiveHint=false, but the description adds meaningful behavioral context: the operation requires separately granted write permission, should only be invoked after host confirmation, and will not send an email to the guest. This goes beyond the annotations and helps set expectations for side effects.

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 focused sentences with no filler: purpose first, then permission, then confirmation requirement, then the send_guest_checkin_link follow-up. Every sentence earns its place and the most important operational constraints are front-loaded.

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 mutation tool with 7 parameters, no output schema, and sibling send_guest_checkin_link, the description plus a fully documented schema gives an agent everything needed to invoke the tool correctly. It covers permission, confirmation, side effects, and the relevant alternative/follow-up behavior.

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 every parameter thoroughly, including the templateId logic. The description adds only general context around property and dates rather than parameter-level detail. A baseline of 3 is appropriate because the schema is doing the heavy lifting.

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: 'Creates a new booking (a check-in workflow) for one of the host's properties.' It clearly separates this from siblings like send_guest_checkin_link and list_bookings by defining what the tool itself accomplishes. The parenthetical clarifies the domain meaning of 'booking' rather than leaving it ambiguous.

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?

The description gives explicit preconditions: write permission is required, and the host should confirm property and dates before calling. It also provides a when-not/what-next rule by stating it does not email the guest and directing the agent to send_guest_checkin_link if a link should go out. This is actionable guidance, not just context.

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.2/5.0
Disambiguation5/5

Each tool targets a distinct concern: guest form completion, usage/limits, bookings, properties, SES statuses, and sending links. Even the two booking-related tools are separated by intent (form status vs. booking metadata/link existence).

Naming Consistency5/5

All names follow a predictable verb_noun pattern: get_* for status/summary queries, list_* for collections, and send_* for the single action. Minor acronym styling (ses_statuses, checkin_link) does not break the pattern.

Tool Count5/5

Six tools is well-scoped for a guest check-in and property-management helper. Each tool covers a distinct operation without redundancy or bloat.

Completeness4/5

The server covers the main host workflows: viewing properties/bookings, checking guest form completion, sending/resending check-in links, and monitoring SES compliance status. Minor gaps exist (e.g. no way to trigger SES submission or view form content), but these appear deliberately out of scope.