Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.
Déduit des transports déclarés par cette annonce (streamable-http). Un client absent de cette liste n’est pas écarté pour autant — c’est simplement quelque chose que Forge ne peut pas confirmer.
La vérification confirme l’identité de l’éditeur (la propriété du dépôt), pas la sûreté du code. L’analyse de sécurité couvre les CVE connues et les scripts d’installation suspects.
Lu depuis un véritable échange MCP initialize → tools/list contre l’endpoint déclaré. Aucun outil n’a été invoqué — tools/list est l’appel d’introspection en lecture seule que le protocole prévoit pour cela. Cela reflète ce que le serveur annonçait à cet instant ; un endpoint hébergé n’est figé sur aucune version et peut changer sans préavis.
https://mcp.bookingmaven.com/mcp11 outils · 602 mssearch_businessesSearch 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.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.
| Paramètre | Type | Description |
|---|---|---|
| location* | string | City, city+state, or zip code. E.g. 'Brooklyn NY', 'Austin, TX', '90210' |
| category | string | Filter by business type |
| limit | number | Max results (default 10) |
get_businessGet 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.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.
| Paramètre | Type | Description |
|---|---|---|
| slug | string | The business slug from search_businesses results |
| business_slug | string | Alias for slug — the business slug from search_businesses results |
get_availabilityGet 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.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.
| Paramètre | Type | Description |
|---|---|---|
| business_slug* | string | The business slug from search_businesses results |
| date* | string | Date to check in YYYY-MM-DD format |
| staff_id | string | Specific staff member ID (from get_business). Omit to check any available staff. |
| timezone | string | IANA timezone string (e.g. 'America/New_York'). Defaults to business local time. |
book_appointmentReserve 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.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.
| Paramètre | Type | Description |
|---|---|---|
| business_slug* | string | The business slug from search_businesses results |
| service_id* | string | The service ID from get_business results |
| start_time* | string | ISO 8601 datetime for the appointment start (from get_availability) |
| end_time* | string | ISO 8601 datetime for the appointment end (from get_availability) |
| customer_name* | string | Customer full name |
| customer_email* | string | Customer email address |
| customer_phone | string | Customer phone number (optional) |
| staff_id | string | Staff member ID (from get_business). Omit to auto-assign. |
| notes | string | Any special requests or notes for the business |
| idempotency_key* | string | Unique key to prevent duplicate bookings (e.g. UUID). Reuse the same key to safely retry. |
get_bookingLook 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.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.
| Paramètre | Type | Description |
|---|---|---|
| booking_id* | string | The booking_id returned from book_appointment |
| lookup_token* | string | The lookup_token returned from book_appointment for this booking |
cancel_appointmentCancel a booking you made. Requires booking_id and the lookup_token from book_appointment. Safe to retry (idempotent). No account needed.Cancel a booking you made. Requires booking_id and the lookup_token from book_appointment. Safe to retry (idempotent). No account needed.
| Paramètre | Type | Description |
|---|---|---|
| booking_id* | string | The booking_id returned from book_appointment |
| lookup_token* | string | The lookup_token returned from book_appointment for this booking |
reschedule_appointmentMove 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.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.
| Paramètre | Type | Description |
|---|---|---|
| booking_id* | string | The booking_id returned from book_appointment |
| lookup_token* | string | The lookup_token returned from book_appointment for this booking |
| new_start_time* | string | ISO 8601 datetime for the new appointment start (from get_availability) |
| new_end_time* | string | ISO 8601 datetime for the new appointment end (from get_availability) |
create_accountGet 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.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.
| Paramètre | Type | Description |
|---|---|---|
| email* | string | Customer email (use the same email used for booking) |
| name* | string | Customer full name |
| phone | string | Customer phone number (optional) |
start_business_signupGet a link for a business owner to sign up and list their business on BookingMaven. Returns a URL with optional pre-filled details.Get a link for a business owner to sign up and list their business on BookingMaven. Returns a URL with optional pre-filled details.
| Paramètre | Type | Description |
|---|---|---|
| business_name | string | Name of the business |
| category | string | Type of business |
| string | Business owner email |
list_my_bookingsList 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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
link_accountLink 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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
11 outils sur 11 ont publié une description.
Les noms et descriptions d’outils sont écrits par l’éditeur et affichés tels quels, comme du texte inerte. Ce sont les chaînes qu’un client MCP transmet à un modèle, alors Forge y recherche des motifs d’injection de prompt — tout constat apparaît avec l’analyse de sécurité ci-dessus. « Privilégié » est une correspondance de mot-clé sur le nom de l’outil, pas un audit de ce qu’il fait : un nom anodin peut tout de même tout faire.
Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.
Les noms cliquables ouvrent l’index Forge de toutes les entrées observées exposant cet outil. Parcourir tous les outils indexés.
Cette entrée ne publie aucun paquet npm : Forge n'a donc pas d'arbre de dépendances pour elle. C'est une lacune de couverture — pas une affirmation qu'elle n'a aucune dépendance.