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.

  1. 01 Call list_subscriptions with status="past_due" to find at-risk subscriptions.
  2. 02 For each, call get_subscription for customer + amount + period info.
  3. 03 Confirm with the user before sending — show a preview list.
  4. 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.
  5. 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_subscriptions
  • get_subscription
  • 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 /handle-past-due in chat. Agent runs the steps in order.

Verified .