MCP PROMPT · SUBSCRIPTIONS
/start-subscription
Start a recurring subscription for a member with optional welcome notification.
01 · The flow
What the agent does, in order.
- 01 Call search_members to find the accountId (or run add-customer first if they don't exist).
- 02 Optionally call list_membership_tiers — picking a tier auto-fills amount + currency.
- 03 Confirm with the user: tier (or custom amount), billing cycle (monthly / quarterly / yearly), auto-renew (default true).
- 04 Call create_subscription with accountId + tierId (or amount + currency) + billingCycle + autoRenew.
- 05 Optionally call send_whatsapp_message with a welcome-to-subscription template.
- 06 Echo back the new subscriptionId, the next renewal date, and the per-cycle amount.
02 · Tools called
4 typed tools in sequence.
search_memberslist_membership_tierscreate_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 /start-subscription in chat. Agent runs the steps in order.
Verified .