booboooking Appointment Booking
Server Details
Book appointments with service providers on booboooking.com — no token required.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: list_services discovers options, check_availability verifies scheduling, and book makes the reservation. There is no overlap or ambiguity between these three core workflow steps.
All tools follow a perfect 'booboooking_verb_noun' pattern with consistent snake_case naming. The prefix and structure are uniform across all three tools.
With only 3 tools, the set feels minimal for an appointment booking system. While it covers the basic workflow, it lacks operations like canceling appointments, updating bookings, or managing user profiles, which are typical for this domain.
The tools cover the core booking flow (list → check → book), but there are notable gaps: no update, cancel, or view existing appointments. The server's purpose suggests a need for more lifecycle management beyond just creation.
Available Tools
3 toolsbooboooking_bookAInspect
Book an appointment for the user on booboooking.com. Requires customer name, email, and phone. If any are missing, return a message asking the user to provide them. Only works for free services — paid services require direct booking on the provider's website.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in YYYYMMDD format (e.g. "20260415") | |
| time | Yes | Start time in HH:MM format (e.g. "09:30") — use the "time" field from booboooking_check_availability results | |
| provider | Yes | Provider identifier | |
| service_id | Yes | Service ID from booboooking_list_services | |
| customer_name | No | Customer full name | |
| customer_email | No | Customer email address | |
| customer_phone | No | Customer phone number (mobile) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: it requires customer details (name, email, phone), handles missing inputs by returning a message, and restricts usage to free services. However, it doesn't mention error handling beyond missing inputs, rate limits, or authentication needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by essential constraints and usage rules. Every sentence adds critical information without waste, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, no annotations, no output schema), the description is mostly complete. It covers purpose, usage guidelines, and key behavioral constraints. However, it lacks details on error responses, confirmation messages, or what happens after booking, which could be useful for a mutation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value by mentioning customer name, email, and phone as required, but doesn't provide additional syntax or format details beyond what the schema specifies. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Book an appointment'), target resource ('for the user on booboooking.com'), and distinguishes it from siblings by focusing on booking rather than checking availability or listing services. It's precise and avoids tautology.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use this tool ('Only works for free services') and when not to use it ('paid services require direct booking on the provider's website'), and implies an alternative (provider's website). This provides clear context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
booboooking_check_availabilityAInspect
Check available time slots for a provider and service on booboooking.com. Returns available dates with slots — each slot has a "time" field (use this for booboooking_book) and a "display" field (show this to the user). Use this before booking.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | Yes | Provider identifier | |
| days_ahead | No | How many days to check (default: 14, max: 30) | |
| service_id | Yes | Service ID from booboooking_list_services (the "id" field) | |
| start_date | No | Start date in YYYYMMDD format (default: today) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the return format ('available dates with slots — each slot has a "time" field and a "display" field') and the relationship to booking, but lacks details on permissions, rate limits, or error handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, with three concise sentences that each add value: stating the purpose, detailing the return format, and providing usage guidance, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (4 parameters, no output schema, no annotations), the description is mostly complete. It covers purpose, usage, and return format, but could improve by addressing authentication needs or error scenarios, though this is mitigated by the clear schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description adds no additional parameter semantics beyond what the schema provides, such as explaining how provider and service_id relate or clarifying date formats, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verb ('Check available time slots') and resources ('provider and service on booboooking.com'), and distinguishes it from sibling tools by mentioning it should be used 'before booking' with booboooking_book.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('Use this before booking') and implies an alternative (booboooking_book), but does not explicitly state when not to use it or mention the other sibling tool (booboooking_list_services).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
booboooking_list_servicesAInspect
List available services for a provider on booboooking.com. Returns service names, IDs, duration, and price. Call this first to find the service ID needed for availability and booking.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | Yes | Provider identifier (e.g. "radnaimark", "tomi") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It adequately describes the read-only nature (listing) and return format, but doesn't mention potential limitations like pagination, rate limits, authentication requirements, or error conditions. The description adds useful context about the workflow role but lacks comprehensive behavioral details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste. First sentence states purpose and return format, second sentence provides crucial workflow guidance. Every word serves a clear purpose and the information is front-loaded appropriately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read operation with one parameter and no output schema, the description provides good context about purpose, usage sequence, and return data. It could be more complete by mentioning authentication or error handling, but given the tool's simplicity, it's largely adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents the single 'provider' parameter. The description doesn't add any additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('List available services'), target resource ('for a provider on booboooking.com'), and scope ('Returns service names, IDs, duration, and price'). It distinguishes itself from sibling tools by focusing on service listing rather than booking or availability checking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool ('Call this first to find the service ID needed for availability and booking') and implicitly distinguishes it from sibling tools (booboooking_book, booboooking_check_availability) by establishing it as a prerequisite step in the workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail — every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control — enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management — store and rotate API keys and OAuth tokens in one place
Change alerts — get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption — public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics — see which tools are being used most, helping you prioritize development and documentation
Direct user feedback — users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!