Skip to main content
Glama

Cancel a booking

cancel_booking
DestructiveIdempotent

Cancel using a private manage token. Ask the guest for explicit approval first; this sends cancellation notifications.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYes
reasonNo
confirmedYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
codeNo
messageNo
nextCursorNo
nextOffsetNo
syncStatusNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true, idempotentHint=true, and openWorldHint=true, so the safety profile is covered. The description adds real context beyond them: authentication via a private manage token, that explicit guest approval is required, and that cancellation notifications are sent as a side effect. That side-effect disclosure is exactly the kind of behavioral detail annotations cannot convey.

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 short sentences with zero filler, front-loaded with the action and authentication mode. Every clause earns its place, including the approval warning and notification side effect.

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?

An output schema exists, so return values need no explanation, and the annotations carry the safety profile. What remains missing is only the reason parameter's semantics — minor against an otherwise complete picture of a mutation tool.

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 0%, so the description must compensate for three undocumented parameters. It does add meaning for two: 'private manage token' clarifies the token semantics and 'ask the guest for explicit approval' explains the confirmed flag's intent. The reason parameter is left entirely unexplained in both schema and description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (cancel) and resource (booking), plus the auth mechanism (private manage token) that separates it from read-side siblings like get_booking. It does not explicitly name reschedule_booking as the alternative, so it stops short of full sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives one real precondition — ask the guest for explicit approval first — which is genuinely useful routing advice. However, it never says when to cancel versus reschedule_booking, nor any when-not condition, so usage is only implied.

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