MCP PROMPT · BOOKINGS

/send-booking-reminder

Find tomorrow's confirmed bookings and ping each customer.

01 · The flow

What the agent does, in order.

  1. 01 Call list_bookings with status="confirmed" and date=tomorrow's ISO date.
  2. 02 For each booking, the result includes accountId + customer phone.
  3. 03 Call send_whatsapp_message per customer with a reminder template (template name typically "booking_reminder" — list templates first if unsure).
  4. 04 Summarise: how many sent, how many failed (e.g. customer opted out of WhatsApp).
02 · Tools called

2 typed tools in sequence.

  • list_bookings
  • send_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.

Try this in your agent.

Connect FavCRM to Cursor, Claude, ChatGPT, or any MCP client. Type /send-booking-reminder in chat. Agent runs the steps in order.

Verified .