Skip to main content
Glama

cancel_booking

Cancel a Nexudus room booking using its booking ID to free up the reserved space.

Instructions

Cancel a booking by its ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
booking_idYesThe booking ID to cancel

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, and it delivers almost nothing: it does not say whether cancellation is irreversible, whether it requires authorization, whether fees/refunds apply, or whether it is idempotent. Only the implicit destructiveness of 'cancel' conveys any behavioral signal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One short, front-loaded sentence with zero wasted words. It is efficient, though the brevity is the same sparseness that leaves behavioral and usage gaps.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a trivial one-parameter destructive tool with no annotations and no output schema, the description is minimally viable but leaves the agent without irreversibility, authorization, or post-cancel state information that matters for a mutation.

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?

With a single required parameter at 100% schema description coverage, the schema already fully documents booking_id. The description adds no format, range, or lookup detail beyond what the schema states, so baseline 3 applies.

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+resource ('Cancel a booking') and the identifier it operates on, which lets an agent separate it from book_room and my_bookings without opening the schema. It stops short of any sibling differentiation or scope statement, so it is clear but not exemplary.

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

Usage Guidelines2/5

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

There is no guidance on when to cancel versus rebooking, no prerequisite such as ownership or booking state, and no mention of an alternative tool. The agent must infer the entire usage context from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.