Skip to main content
Glama

booboooking Appointment Booking

booboooking_cancel

DestructiveIdempotent

Cancel a reservation on booboooking.com. Requires the reservation_id AND pin that were returned from the original booboooking_book call — both are needed as proof of booking ownership. If the user asks to cancel but you do not have the pin in your conversation state, you MUST ask them for it — you cannot cancel without it. Never invent or guess a pin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pinYesThe PIN returned from the original booking
providerYesProvider identifier (same as the one used for booking)
reservation_idYesThe `id` returned from the original booking (24-hex MongoDB ObjectId)

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations (destructiveHint, idempotentHint), the description reveals that both reservation_id and pin are required as proof of booking ownership, that cancellation is impossible without the pin, and that the pin must never be invented or guessed. This substantially clarifies the safety-critical behavior for an agent.

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 sentences, front-loaded with the core action, followed immediately by the critical prerequisite and a clear 'must ask' instruction. No filler or redundant material.

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 destructive action with three required parameters and no return-value obligations, the description covers the action, all invocation prerequisites, and the fallback behavior when the pin is missing. The parameter details in the schema fill any remaining gaps.

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?

The schema already documents all three parameters (100% coverage), but the description adds the relationship between reservation_id/pin and the original booboooking_book call, plus the hard constraint that the pin must come from conversation state, not be fabricated. This goes beyond the schema's per-parameter text.

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?

States the exact operation ('Cancel a reservation on booboooking.com') and clearly differentiates from siblings such as booboooking_book and booboooking_get_booking. It also specifies the ownership proof requirement tied to the original booking call.

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?

Gives an explicit trigger ('If the user asks to cancel...') and a concrete procedure for the missing-pin case. It does not explicitly discuss alternatives, but sibling operations are sufficiently distinct that no exclusion is necessary.

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.3/5.0
Disambiguation4/5

Each tool has a clear role, but check_availability and find_next_available both deal with finding open slots and could be confused by an agent. The descriptions do distinguish them (specific dates vs. next available), so the overlap is manageable.

Naming Consistency4/5

All tools share the booboooking_ prefix and use snake_case, which creates a consistent family. There is minor inconsistency between bare verbs like book and cancel versus more descriptive verb_object names like check_availability and list_services.

Tool Count5/5

Six tools is well-scoped for an appointment booking server: service discovery, availability checking, booking, retrieval, and cancellation. Each tool serves a necessary part of the booking workflow with no obvious bloat.

Completeness4/5

The toolset covers the full booking lifecycle: list services, check availability, book, view booking, and cancel. A reschedule/update tool or a way to list all bookings for a customer would improve coverage, but the primary use case is complete.

Resources