MCP PROMPT · BILLING & INVOICING

/chase-overdue-invoices

Find overdue invoices and send a payment reminder to each customer.

01 · The flow

What the agent does, in order.

  1. 01 Call list_invoices with status="OVERDUE" to find unpaid invoices past their due date.
  2. 02 For each, call get_invoice to retrieve the invoice number, total, and customer details.
  3. 03 Confirm with the user before sending — show a preview list (customer name, amount, days overdue).
  4. 04 For each, call send_whatsapp_message (or send_message for email/SMS) with a payment-reminder template. Include the invoice number and amount.
  5. 05 Summarise: how many reminders sent, how many failed (e.g. customer opted out), total outstanding amount across all chased invoices.
02 · Tools called

3 typed tools in sequence.

  • list_invoices
  • get_invoice
  • 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 /chase-overdue-invoices in chat. Agent runs the steps in order.

Verified .