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.
- 01 Call list_invoices with status="OVERDUE" to find unpaid invoices past their due date.
- 02 For each, call get_invoice to retrieve the invoice number, total, and customer details.
- 03 Confirm with the user before sending — show a preview list (customer name, amount, days overdue).
- 04 For each, call send_whatsapp_message (or send_message for email/SMS) with a payment-reminder template. Include the invoice number and amount.
- 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_invoicesget_invoicesend_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 billing & invoicing playbooks.
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 .