Skip to main content
Glama

Awning

Book (creates a real reservation)

create_booking
Idempotent

Creates a REAL booking from a hold. Call only after the user explicitly confirmed time and price. Needs a name and at least one contact unless the user is signed in to Awning. Pass the same idempotency_key when retrying.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
addressNoWhere to come or deliver, e.g. {"line1":"Rawai Beach Resort"}
hold_idYes
customerNo
intake_answersNo
idempotency_keyNoRandom string; reuse it on retries

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark it as non-read-only, idempotent, and non-destructive. The description adds value by emphasizing that it creates a real reservation (real-world consequence) and requires explicit user confirmation, which is critical context beyond the annotations. No contradiction.

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?

Two sentences, no redundancy, and the core purpose is front-loaded. Every clause adds essential usage information, making it highly efficient for an agent to parse quickly.

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 tool with nested objects and no output schema, the description covers the essential usage: the hold context, confirmation requirement, contact requirements, and idempotency. It does not explain the response format or the fate of the hold, but these are not critical for invocation. Overall, it is complete enough for correct use.

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 low (33%: only idempotency_key has a description). The description partially compensates by explaining the idempotency_key reuse and the name/contact requirements for the customer object. However, it does not clarify hold_id, address, note, or intake_answers beyond what the schema shows, leaving gaps for those parameters.

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 states a specific verb and resource ('Creates a REAL booking from a hold'), which clearly distinguishes it from sibling tools like create_hold and cancel_booking. The emphasis on 'REAL' and 'from a hold' removes ambiguity about its role in the booking workflow.

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?

Provides explicit preconditions: 'Call only after the user explicitly confirmed time and price' and the requirement for name/contact unless signed in. It also advises on idempotency key reuse for retries. It does not explicitly name alternative tools, but the 'from a hold' context makes the workflow clear.

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