com.bookingmaven/marketplace

MCPcommunautéen ligne
v1.0.0com.bookingmavenUnknownMis à jour il y a 2 mois

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

État de l’endpointen ligne
vérifié il y a 2 h · 602 ms
100 % des dernières 3 vérifications ont atteint cet endpoint
Fonctionne dans
ClaudeCursorCopilotChatGPTGemini

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.

Indexé automatiquement depuis des sources publiques. Pas encore vérifié par son développeur sur Forge.Revendiquer cette annonce →
il y a 2 moisDernière mise à jour
Paquet
Auteurcom.bookingmaven
LicenceUnknown
Version1.0.0
Sourcemcp-registry
Statut de confiance
B
60/100Bon
Listé dans l’index Forge+10/10
Identité de l’éditeur vérifiée+0/30
Éditeur : aucune référence de dépôt n’est enregistrée pour cette annonce, `forge publish` ne peut donc pas vérifier la propriété automatiquement. Utilisez « Revendiquer cette annonce » ci-dessus — Forge les examine à la main.
Vérification de domaine+0/10
Actuellement indisponible pour ce type d’annonce — la vérification de domaine ne s’exécute aujourd’hui que pour les paquets adossés à npm, cette ligne ne peut donc pas encore être obtenue ici, quel que soit le contenu hébergé sur le domaine.
Analyse d’injection de prompt · propre+30/30
Analyse d’obfuscation / exfiltration · propre+20/20
StatutIndexé par la communauté
ÉditeurNon vérifié
SignatureNon signé
Domaine
Provenance
DépendancesNon audité
Surface d’outils11 outils · aucun privilégié
Analyse de sécurité✓ Proprevlive · aujourd’huiQuelle est l’efficacité de cette analyse ?
ÉvaluationsAucune
Indexé4 juil. 2026

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.

Outils

11 outils · aucun privilégié
Observé en direct depuis l’endpoint du fournisseur2h ago

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 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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

ParamètreTypeDescription
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.

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.

À propos

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

Mots-clés
mcp
Alternatives
Comparaison des surfaces d’outils…

Aucune couverture des dépendances

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.