MCP PROMPT · BOOKINGS
/book-customer
Find a customer, pick a service and slot, create + confirm a booking.
01 · The flow
What the agent does, in order.
- 01 Call search_members to find the accountId. If they don't exist, run the add-customer playbook first.
- 02 Call list_services to find the right service. Filter by name keyword if provided.
- 03 Call get_available_slots with serviceId + date range (default to next 7 days if user didn't specify).
- 04 Confirm the slot with the user before booking — slot pickers vary, so don't assume "earliest" without asking.
- 05 Call create_booking with accountId + serviceId + start time + duration.
- 06 Call confirm_booking unless the service requires customer-side payment (check with get_service_detail.requiresPayment).
- 07 Optionally call send_whatsapp_message to notify the customer with a booking template.
02 · Tools called
6 typed tools in sequence.
search_memberslist_servicesget_available_slotscreate_bookingconfirm_bookingsend_whatsapp_message
Every tool ships with MCP annotations (title, readOnlyHint, destructiveHint, openWorldHint, idempotentHint). Clients can gate destructive calls before invoking. Full catalog: /server-card.json.
03 · Related
More bookings playbooks.
Try this in your agent.
Connect FavCRM to Cursor, Claude, ChatGPT, or any MCP client. Type /book-customer in chat. Agent runs the steps in order.
Verified .