com.bookingmaven/marketplace
Official11 toolsBook, reschedule and cancel appointments at any business on the BookingMaven marketplace.
Books, reschedules, and cancels appointments across businesses in BookingMaven network.
Captured live from the server via tools/list.
search_businesses
Search for service businesses by location. Returns businesses with their booking URLs, ratings, and descriptions. Use get_business to see services and get_availability to check open slots.
Parameters (3)
- locationstringrequired
City, city+state, or zip code. E.g. 'Brooklyn NY', 'Austin, TX', '90210'
- categorystring
Filter by business type
- limitnumber
Max results (default 10)
get_business
Get full details for a business including services (with IDs and prices), staff, and hours. You need service_id and optionally staff_id before calling book_appointment.
Parameters (2)
- slugstring
The business slug from search_businesses results
- business_slugstring
Alias for slug — the business slug from search_businesses results
get_availability
Get open appointment slots for a business on a specific date. Returns ISO timestamps for each available slot. Use these start_time/end_time values when calling book_appointment.
Parameters (4)
- business_slugstringrequired
The business slug from search_businesses results
- datestringrequired
Date to check in YYYY-MM-DD format
- staff_idstring
Specific staff member ID (from get_business). Omit to check any available staff.
- timezonestring
IANA timezone string (e.g. 'America/New_York'). Defaults to business local time.
book_appointment
Reserve an appointment slot at a service business. Provide a unique idempotency_key to safely retry without double-booking. Get service_id from get_business and start_time/end_time from get_availability.
Parameters (10)
- business_slugstringrequired
The business slug from search_businesses results
- service_idstringrequired
The service ID from get_business results
- start_timestringrequired
ISO 8601 datetime for the appointment start (from get_availability)
- end_timestringrequired
ISO 8601 datetime for the appointment end (from get_availability)
- customer_namestringrequired
Customer full name
- customer_emailstringrequired
Customer email address
- customer_phonestring
Customer phone number (optional)
- staff_idstring
Staff member ID (from get_business). Omit to auto-assign.
- notesstring
Any special requests or notes for the business
- idempotency_keystringrequired
Unique key to prevent duplicate bookings (e.g. UUID). Reuse the same key to safely retry.
get_booking
Look up the current status/time of a booking you made. Requires the booking_id and the lookup_token that book_appointment returned. No account needed.
Parameters (2)
- booking_idstringrequired
The booking_id returned from book_appointment
- lookup_tokenstringrequired
The lookup_token returned from book_appointment for this booking
cancel_appointment
Cancel a booking you made. Requires booking_id and the lookup_token from book_appointment. Safe to retry (idempotent). No account needed.
Parameters (2)
- booking_idstringrequired
The booking_id returned from book_appointment
- lookup_tokenstringrequired
The lookup_token returned from book_appointment for this booking
reschedule_appointment
Move a booking you made to a new time. Requires booking_id, the lookup_token from book_appointment, and new_start_time/new_end_time (ISO 8601, from get_availability). The new slot is checked for conflicts. No account needed.
Parameters (4)
- booking_idstringrequired
The booking_id returned from book_appointment
- lookup_tokenstringrequired
The lookup_token returned from book_appointment for this booking
- new_start_timestringrequired
ISO 8601 datetime for the new appointment start (from get_availability)
- new_end_timestringrequired
ISO 8601 datetime for the new appointment end (from get_availability)
create_account
Get a BookingMaven signup link pre-filled with the customer's details. The customer visits the link to set their password and activate their account, which links their past bookings.
Parameters (3)
- emailstringrequired
Customer email (use the same email used for booking)
- namestringrequired
Customer full name
- phonestring
Customer phone number (optional)
start_business_signup
Get a link for a business owner to sign up and list their business on BookingMaven. Returns a URL with optional pre-filled details.
Parameters (3)
- business_namestring
Name of the business
- categorystring
Type of business
- emailstring
Business owner email
list_my_bookings
List all appointments booked with your email address. Requires signing in (OAuth) — your AI must be connected with an authenticated account that has a verified email. Returns your upcoming and past bookings.
No parameters.
link_account
Link the guest bookings you made with your email to your signed-in account so you can manage them from your account. Requires signing in (OAuth) with a verified email.
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"marketplace": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.bookingmaven.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.