
Booboooking Appointment Booking MCP
booboooking MCP is an MCP server that books appointments with service providers on booboooking.com without a required token.
About
booboooking Appointment Booking MCP connects your coding agent to booboooking.com so it can reserve slots with real service providers—without the catalog listing a mandatory bearer token. developers shipping booking widgets, marketplace MVPs, or ops automations for salons, clinics, or trades can exercise end-to-end scheduling flows from the IDE before they invest in a custom calendar backend. The server is action-oriented: it is meant for creating appointments through the published remote, not for generic CRM sync. Treat confirmations and provider rules as live production data and test with care. Complexity stays beginner-friendly if you already run an MCP client with HTTP remotes. Pair this MCP with your own payment, notification, and branding layers; booboooking supplies the appointment rail on their platform.
- Books appointments with booboooking.com service providers via MCP
- Hosted streamable-http remote at booboooking.com/api/slot/mcp
- No API token required per published server description
- Catalog version 1.0.0 aimed at slot-based local services
- Lets agents complete booking steps instead of only suggesting times in chat
Booboooking Appointment Booking MCP by the numbers
- Exposes 6 verified tools (MCP introspection)
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --transport http booboooking https://booboooking.com/api/slot/mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Transport | HTTP |
|---|---|
| Auth | None |
| Tools | 6 |
What it does
Book booboooking.com appointments with service providers from your agent while prototyping scheduling for local services SaaS.
Who is it for?
Best when you're prototyping local-services booking bots or concierge flows that need real slots, fast.
Skip if: Skip if you need multi-tenant scheduling database or providers outside booboooking.com.
What you get
Your agent can book live appointments on booboooking.com while you iterate scheduling UI and service-provider workflows.
- Live appointment bookings initiated from agent sessions
- Validated scheduling flows for local-services MVPs
- Fewer manual test bookings while iterating chat or form UX
By the numbers
- MCP version 1.0.0
- Remote URL booboooking.com/api/slot/mcp
- No authorization header required in catalog metadata
Tools 6
Public tool metadata - what this server can do for an agent.
booboooking_list_services1 paramList 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.
providerstringrequiredProvider identifier (e.g. "radnaimark", "tomi")
booboooking_check_availability4 paramsCheck 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.
providerstringrequiredProvider identifierservice_idstringrequiredService ID from booboooking_list_services (the "id" field)start_datestringStart date in YYYYMMDD format (default: today)days_aheadnumberHow many days to check (default: 14, max: 30)
booboooking_book7 paramsBook 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.
providerstringrequiredProvider identifierservice_idstringrequiredService ID from booboooking_list_servicesdatestringrequiredDate in YYYYMMDD format (e.g. "20260415")timestringrequiredStart time in HH:MM format (e.g. "09:30") — use the "time" field from booboooking_check_availability resultscustomer_namestringCustomer full namecustomer_emailstringCustomer email addresscustomer_phonestringCustomer phone number (mobile)
booboooking_cancel3 paramsCancel 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.
providerstringrequiredProvider identifier (same as the one used for booking)reservation_idstringrequiredThe `id` returned from the original booking (24-hex MongoDB ObjectId)pinstringrequiredThe 4-digit PIN returned from the original booking
booboooking_find_next_available5 paramsSearch forward for the next available appointment slots for a provider and service on booboooking.com. Returns up to `count` openings sorted chronologically. Useful when you need "the next available appointment" without a specific date in mind.
providerstringrequiredProvider identifierservice_idstringrequiredService ID from booboooking_list_servicesfrom_datestringStart search from this date in YYYYMMDD format (default: today)countintegerNumber of openings to return (default: 3, max: 10)search_daysintegerDays to search ahead (default: 30, max: 60)
booboooking_get_booking3 paramsRetrieve 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.
reservation_idstringrequiredThe reservation ID returned from booboooking_book (24-char hex MongoDB ObjectId)pinstringrequiredThe 4-digit PIN returned from the original booboooking_book callproviderstringrequiredProvider identifier (same as used for booking)
Recommended MCP Servers
How it compares
Live appointment-booking MCP on booboooking.com, not a generic CalDAV skill or static availability scraper.
FAQ
Who is booboooking MCP for?
It is for developers and agents automating local-service scheduling who want MCP-driven booking against booboooking.com providers.
When should I use booboooking MCP?
Use it during Build integrations when you are testing real appointment creation, slot discovery, or provider-facing concierge scripts—not just static mockups.
How do I add booboooking MCP to my agent?
Register https://booboooking.com/api/slot/mcp as a streamable-http MCP remote in Claude Desktop, Cursor, or another compatible client; the listing states no token is required.