Loading...
Loading...
RevenueCat CLI tool for subscription analytics, MRR tracking, customer management, and offering configuration. Use when analyzing app revenue, checking subscriber status, managing offerings/packages/entitlements, querying chart data, setting up webhooks, or any RevenueCat API interaction via CLI. Triggers on "revcat", "RevenueCat", "MRR", "subscription analytics", "revenue metrics", "offerings", "entitlements", "paywalls", or when the user wants to interact with RevenueCat data.
npx skill4agent add metehankurucu/revcat revcatREVENUECAT_API_KEYbun install -g @metehankurucu/revcatexport REVENUECAT_API_KEY=sk_your_key
export REVENUECAT_PROJECT_ID=proj_your_id # optional defaultrevcat projects listrevcat <resource> <action> --project <id> [options]--projectREVENUECAT_PROJECT_IDprojects list# Overview: MRR, revenue, active subs, trials, new customers
revcat charts overview --project proj123
# MRR trend (monthly)
revcat charts data --project proj123 --chart mrr --start 2025-01-01 --end 2025-12-31 --resolution month
# Churn rate (weekly)
revcat charts data --project proj123 --chart churn --start 2026-01-01 --end 2026-02-21 --resolution week
# Available chart names: actives, arr, churn, mrr, mrr_movement, revenue, trials,
# subscription_retention, initial_conversion, trial_conversion, realized_ltv_per_customer,
# realized_ltv_per_paying_customer, refund_rate, new, store_top_products, store_top_countries,
# non_subscription_revenue, non_subscription_transactions
# Discover chart options (resolutions, segments, filters)
revcat charts options --project proj123 --chart revenuerevcat customers get --project proj123 --customer cust_abc
revcat customers entitlements --project proj123 --customer cust_abc
revcat customers subscriptions --project proj123 --customer cust_abc
revcat customers purchases --project proj123 --customer cust_abc
revcat customers attributes --project proj123 --customer cust_abc
# Tag for segmentation
revcat customers set-attributes --project proj123 --customer cust_abc \
--data '{"segment": {"value": "power_user"}}'
# A/B test: assign specific offering
revcat customers assign-offering --project proj123 --customer cust_abc --offering ofrng_xyzrevcat offerings list --project proj123
revcat offerings create --project proj123 --lookup-key premium-v2 --display-name "Premium V2"
revcat offerings update --project proj123 --offering ofrng_abc --display-name "Updated Name" --is-current
# Packages within offerings
revcat packages create --project proj123 --offering ofrng_abc --lookup-key monthly --display-name "Monthly"
revcat packages attach-products --project proj123 --package pkg_abc --products '[{"product_id":"prod_xyz"}]'
revcat packages detach-products --project proj123 --package pkg_abc --product-ids prod_xyzrevcat entitlements list --project proj123
revcat entitlements create --project proj123 --lookup-key premium --display-name "Premium Access"
revcat entitlements attach-products --project proj123 --entitlement entl_abc --product-ids prod_1,prod_2revcat subscriptions search --project proj123 --store-identifier "450001234567890"
revcat subscriptions get --project proj123 --subscription sub_abc
revcat subscriptions entitlements --project proj123 --subscription sub_abc
revcat subscriptions transactions --project proj123 --subscription sub_abcrevcat webhooks create --project proj123 --url "https://api.myapp.com/webhook" --name "Prod" --environment production
revcat webhooks update --project proj123 --webhook wh_abc --url "https://new-url.com/hook"| Resource | Actions | Notes |
|---|---|---|
| list | |
| list, get, keys | |
| overview, data, options | 5 req/min rate limit |
| list, get, entitlements, aliases, attributes, set-attributes, purchases, subscriptions, vc-balances, assign-offering | |
| list, get, products, create, update, attach-products, detach-products | |
| list, get, create, update | |
| list, get, products, create, update, attach-products, detach-products | |
| list, get | read-only |
| search, get, entitlements, transactions, management-url | read-only |
| search, get, entitlements | read-only |
| list, get | read-only |
| list | read-only |
| list | read-only |
| list, get | read-only |
| list, get, create, update | |
| list, get, create |
| Domain | Limit | Commands |
|---|---|---|
| 5/min | charts |
| 480/min | customers, subscriptions, purchases |
| 60/min | everything else |