MCP PROMPT · BOOKINGS
/review-cancellations
Pull recent cancelled bookings and identify cancellation patterns.
01 · The flow
What the agent does, in order.
- 01 Call list_bookings with status="cancelled" and a date range (default last 30 days).
- 02 For each, call get_booking_detail to retrieve the cancellation reason (if recorded).
- 03 Group by service, day-of-week, customer, or reason — whatever pattern stands out.
- 04 Render a markdown summary: top 3 services with cancellations, top 3 customers, common reasons, suggested ops actions (e.g. tighten lead time policy, change cancellation fee).
02 · Tools called
2 typed tools in sequence.
list_bookingsget_booking_detail
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 /review-cancellations in chat. Agent runs the steps in order.
Verified .