Skip to main content
Glama

booboooking Appointment Booking

booboooking_get_booking

Read-onlyIdempotent

Retrieve a booking by its reservation ID. Requires the PIN from the original booking response to prove ownership. Returns full booking details including payment state if the reservation was created via the payment flow.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pinYesThe PIN returned from the original booboooking_book call
providerYesProvider identifier (same as used for booking)
reservation_idYesThe reservation ID returned from booboooking_book (24-char hex MongoDB ObjectId)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds behavioral context beyond the annotations by disclosing the PIN ownership requirement and the conditional payment-state return behavior.

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?

The description is two sentences with no fluff. It front-loads the core action and then adds the most important usage detail and return-value nuance.

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 simple read-only lookup with fully documented parameters and safety annotations, the description covers the essential call context, ownership proof, and return highlights. It could mention error handling for an invalid PIN or missing reservation, but that is a minor gap given the focused scope.

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%, with each parameter already explained, including the reservation ID format and PIN provenance. The description adds no new per-parameter semantics, only reinforcing that the PIN proves ownership, so the baseline score applies.

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 uses a specific verb and resource: 'Retrieve a booking by its reservation ID.' It clearly distinguishes this retrieval operation from sibling tools like booboooking_book, booboooking_cancel, and the availability-check tools.

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?

The description explains the key usage constraint: the PIN from the original booking response is required to prove ownership. It does not explicitly name alternative tools or state when not to use it, but the retrieval intent and required credentials make the usage context 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.

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