com.bookingmaven/marketplace

MCPcommunityattivo
v1.0.0com.bookingmavenUnknownAggiornato 2 mesi fa

Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.

Stato dell’endpointattivo
verificato 2 h fa · 602 ms
100 % degli ultimi 3 controlli hanno raggiunto questo endpoint
Funziona in
ClaudeCursorCopilotChatGPTGemini

Dedotto dai trasporti dichiarati da questo annuncio (streamable-http). Un client che non compare qui non è escluso — semplicemente Forge non è in grado di confermarlo.

Indicizzato automaticamente da fonti pubbliche. Non ancora verificato dal suo sviluppatore su Forge.Rivendica questo annuncio →
2 mesi faUltimo aggiornamento
Pacchetto
Autorecom.bookingmaven
LicenzaUnknown
Versione1.0.0
Fontemcp-registry
Stato di fiducia
B
60/100Buono
Presente nell’indice di Forge+10/10
Identità del publisher verificata+0/30
Publisher: per questo annuncio non risulta alcun repository, quindi `forge publish` non può verificare la proprietà automaticamente. Usa «Rivendica questo annuncio» qui sopra — Forge li esamina a mano.
Verifica del dominio+0/10
Al momento non disponibile per questo tipo di annuncio — oggi il controllo del dominio viene eseguito solo per i pacchetti su npm, quindi questa riga non può ancora essere ottenuta qui, indipendentemente da cosa sia ospitato sul dominio.
Analisi prompt injection · pulita+30/30
Analisi offuscamento / esfiltrazione · pulita+20/20
StatoIndicizzato dalla community
PublisherNon verificato
FirmaNon firmato
Dominio
Provenienza
DipendenzeNon verificate
Superficie di strumenti11 strumenti · nessuno privilegiato
Analisi di sicurezza✓ Pulitovlive · oggiQuanto è efficace questa analisi?
ValutazioniNessuna
Indicizzato4 lug 2026

La verifica conferma l’identità del publisher (la proprietà del repo), non la sicurezza del codice. L’analisi di sicurezza copre i CVE noti e gli script di installazione sospetti.

Strumenti

11 strumenti · nessuno privilegiato
Osservato in tempo reale dall’endpoint del fornitore2h ago

Letto da un vero handshake MCP initialize → tools/list verso l’endpoint dichiarato. Nessuno strumento è stato invocato — tools/list è la chiamata di introspezione in sola lettura che il protocollo prevede a questo scopo. Riflette ciò che il server annunciava in quel momento; un endpoint ospitato non è vincolato ad alcuna versione e può cambiare senza preavviso.

  • https://mcp.bookingmaven.com/mcp11 strumenti · 602 ms
search_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.

ParametroTipoDescrizione
location*stringCity, city+state, or zip code. E.g. 'Brooklyn NY', 'Austin, TX', '90210'
categorystringFilter by business type
limitnumberMax 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.

ParametroTipoDescrizione
slugstringThe business slug from search_businesses results
business_slugstringAlias 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.

ParametroTipoDescrizione
business_slug*stringThe business slug from search_businesses results
date*stringDate to check in YYYY-MM-DD format
staff_idstringSpecific staff member ID (from get_business). Omit to check any available staff.
timezonestringIANA 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.

ParametroTipoDescrizione
business_slug*stringThe business slug from search_businesses results
service_id*stringThe service ID from get_business results
start_time*stringISO 8601 datetime for the appointment start (from get_availability)
end_time*stringISO 8601 datetime for the appointment end (from get_availability)
customer_name*stringCustomer full name
customer_email*stringCustomer email address
customer_phonestringCustomer phone number (optional)
staff_idstringStaff member ID (from get_business). Omit to auto-assign.
notesstringAny special requests or notes for the business
idempotency_key*stringUnique 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.

ParametroTipoDescrizione
booking_id*stringThe booking_id returned from book_appointment
lookup_token*stringThe 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.

ParametroTipoDescrizione
booking_id*stringThe booking_id returned from book_appointment
lookup_token*stringThe 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.

ParametroTipoDescrizione
booking_id*stringThe booking_id returned from book_appointment
lookup_token*stringThe lookup_token returned from book_appointment for this booking
new_start_time*stringISO 8601 datetime for the new appointment start (from get_availability)
new_end_time*stringISO 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.

ParametroTipoDescrizione
email*stringCustomer email (use the same email used for booking)
name*stringCustomer full name
phonestringCustomer 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.

ParametroTipoDescrizione
business_namestringName of the business
categorystringType of business
emailstringBusiness 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.

Per questo strumento non è stato pubblicato alcuno schema di input.

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.

Per questo strumento non è stato pubblicato alcuno schema di input.

11 strumenti su 11 hanno pubblicato una descrizione.

I nomi e le descrizioni degli strumenti sono scritti dal publisher e mostrati alla lettera come testo inerte. Sono le stringhe che un client MCP passa a un modello, quindi Forge vi cerca schemi di prompt injection — ogni rilievo compare insieme all’analisi di sicurezza qui sopra. «Privilegiato» è una corrispondenza di parola chiave sul nome dello strumento, non una verifica di ciò che fa: un nome innocuo può comunque fare qualsiasi cosa.

Descrizione

Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.

Parole chiave
mcp
Alternative
Confronto delle superfici di strumenti…

Nessuna copertura delle dipendenze

Questa voce non pubblica alcun pacchetto npm, quindi Forge non ha un albero delle dipendenze per essa. È una lacuna di copertura, non l'affermazione che non abbia dipendenze.