Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.
Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.
Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.
Aus einem echten MCP-Handshake initialize → tools/list gegen den deklarierten Endpunkt gelesen. Es wurde nie ein Tool aufgerufen — tools/list ist der lesende Introspektionsaufruf, den das Protokoll dafür vorsieht. Es spiegelt wider, was der Server in diesem Moment angeboten hat; ein gehosteter Endpunkt ist an keine Version gebunden und kann sich ohne Ankündigung ändern.
https://mcp.bookingmaven.com/mcp11 Tools · 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
| Parameter | Typ | Beschreibung |
|---|---|---|
| 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.
Für dieses Tool wurde kein Eingabeschema veröffentlicht.
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.
Für dieses Tool wurde kein Eingabeschema veröffentlicht.
11 von 11 Tools haben eine Beschreibung veröffentlicht.
Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.
Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.
Verlinkte Namen öffnen den Forge-Index aller Einträge, bei denen dieses Tool beobachtet wurde. Alle indexierten Tools durchsuchen.
Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.