Skip to main content
Glama

booboooking Appointment Booking

booboooking_book

Book an appointment on booboooking.com (free OR paid services — payment is always in cash at the appointment, no online payment). For customer_name and customer_email, use the signed-in user's profile from your host app — do NOT ask them to retype. Always ask for customer_phone separately (it is not in the sign-in profile). customer_phone MUST be in international E.164 format starting with + and country code (e.g. +36201234567), no spaces/dashes — convert local-format numbers before calling this tool or the booking will fail validation. On success the response includes id and pin (MUST remember paired, for cancellation) and optionally cash_due: { amount, currency } — if present, remind the user to bring that amount in cash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesDate in YYYYMMDD format (e.g. "20260415")
timeYesStart time in HH:MM format (e.g. "09:30") — use the "time" field from booboooking_check_availability results
providerYesProvider identifier
service_idYesService ID from booboooking_list_services
customer_nameNoCustomer full name
customer_emailNoCustomer email address
customer_phoneNoCustomer phone number in international E.164 format, e.g. "+36201234567" — convert local-format numbers (e.g. "06201234567") before calling this tool.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only indicate non-read-only, non-idempotent, and non-open-world traits. The description goes far beyond that by disclosing cash-only payment, validation failure on malformed phone numbers, response fields id/pin needing to be remembered paired for cancellation, and optional cash_due instructions. This is strong behavioral disclosure for a mutation tool.

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 dense but efficient, with the core purpose front-loaded and every subsequent sentence carrying critical instructions. There is no filler or repetition of schema details that adds no value.

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?

With no output schema, the description still covers return handling (id, pin, cash_due), data sourcing, validation requirements, and payment expectations. Combined with full parameter documentation in the schema and sibling context for cancellation and availability checks, the agent has everything needed to call the tool correctly.

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?

Schema coverage is 100%, so the baseline is 3. The description adds genuinely new parameter semantics: customer_name and customer_email should come from the host app's profile rather than user input, customer_phone must be requested separately and converted to E.164, and response id/pin/cash_due relate to the data the agent must manage. This elevates it above baseline.

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 opens with a specific verb+resource: 'Book an appointment on booboooking.com', and clarifies free OR paid services. It is unambiguous against sibling tools like cancel, check_availability, and list_services, so an agent can distinguish it immediately.

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 gives concrete operational guidance: use the signed-in user's profile for name/email, always ask for phone separately, convert local numbers to E.164, and what to do with the response. It does not explicitly name when to choose this tool versus a sibling, but the booking context is clear and the guidance is substantial.

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