MCP PROMPT · SUBSCRIPTIONS
/handle-past-due
Find past-due subscriptions and reach out for payment recovery.
01 · The flow
What the agent does, in order.
- 01 Call list_subscriptions with status="past_due" to find at-risk subscriptions.
- 02 For each, call get_subscription for customer + amount + period info.
- 03 Confirm with the user before sending — show a preview list.
- 04 For each, call send_whatsapp_message (or send_message) with a payment-recovery template. Include the amount, the period being recovered, and a payment link if your merchant has Stripe Connect set up.
- 05 Summarise: how many reached out, total at-risk MRR. Suggest follow-up via cancel-subscription if recovery fails after N days.
02 · Tools called
3 typed tools in sequence.
list_subscriptionsget_subscriptionsend_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 subscriptions playbooks.
Try this in your agent.
Connect FavCRM to Cursor, Claude, ChatGPT, or any MCP client. Type /handle-past-due in chat. Agent runs the steps in order.
Verified .