How to build RevenueCat subscription dashboards in Metabase
RevenueCat manages your in-app subscriptions across the App Store, Google Play, and web, and unifies them into one subscriber and revenue model. Metabase is where you turn that data into shared, trustworthy dashboards — and join it with product, ads, and attribution data RevenueCat's own charts can't see. This guide covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the RevenueCat MCP server and loads a CSV into Metabase with the Metabase CLI for quick analysis, and a durable pipeline route that syncs RevenueCat into a database so you can build MRR, trial, and churn dashboards anyone can read.
How do you connect RevenueCat to Metabase?
Most teams combine both routes: use the RevenueCat MCP server and Metabase CLI route to pull live data and stand up a quick analysis, and the pipeline route for the subscription dashboards the team depends on.
Live data in, quick analysis out
Pair the RevenueCat MCP server (to look up live subscribers, entitlements, and purchases) with the Metabase CLI, whose upload command loads a CSV into Metabase as a ready-to-query table and model.
- Quick lookups like "which subscribers are in a trial that ends this week?"
- Loading a RevenueCat CSV export into Metabase in seconds
- Spot-checks and one-off analyses without a warehouse
- Great for exploration, not governed revenue reporting
- Use a read-focused API v2 token so analysis can't trigger writes
- CSV uploads are snapshots — refresh or move to the pipeline for history
Durable dashboards with history
Use RevenueCat's scheduled data exports (to S3/GCS or straight into BigQuery/Snowflake/Redshift) or the REST API v2 to land subscription data in a database, then point Metabase at it.
- MRR, trial-conversion, and churn dashboards the team relies on
- Cohort and LTV analysis over quarters and years
- Joining subscription data with product usage, ads, and attribution data
- Requires a destination database and a sync to maintain
- You own the revenue definitions and refresh schedule
- Reconcile against RevenueCat Charts before anyone trusts the numbers
What can you analyze from RevenueCat data in Metabase?
- MRR and active subscriptions — recurring revenue now and its monthly movement
- Trials and conversion — trial starts and trial-to-paid conversion by product and store
- Churn and retention — voluntary vs. billing (failed-renewal) churn, retention by cohort
- LTV and ARPU — cumulative revenue and value per subscriber by cohort
- Store and platform mix — App Store vs. Play vs. web, by country
- Refunds — refund rate and its impact on net revenue
Which RevenueCat dashboards should you build in Metabase?
MRR & subscriptions
Recurring revenue from mobile and web subscriptions.
- MRR and active subscriptions right now (number + trend)
- MRR movement: new, renewal, churn (waterfall)
- Active subscriptions by product and store (bar)
- Paid vs. trial subscriptions (stacked area)
Trials & conversion
How well free trials and intro offers convert to paid.
- Trial starts and trial-to-paid conversion rate (line)
- Conversion by product, store, and country (bar)
- Time-to-convert distribution (histogram)
- Intro-offer vs. full-price cohorts (table)
Churn & retention
Where subscription revenue leaks and how well you keep it.
- Subscription retention by cohort (heatmap)
- Voluntary vs. billing (failed-renewal) churn (bar)
- Grace-period and billing-retry recovery (line)
- Churn by product and store (table)
LTV & cohorts
Does each install/signup cohort pay back?
- Cumulative revenue (LTV) by install cohort (line)
- ARPU and ARPPU by product (table)
- Revenue by store, country, and platform (bar)
- Refund rate and its revenue impact (number)
How do you use the RevenueCat MCP server with the Metabase CLI?
Pair the RevenueCat MCP server with the Metabase CLI for fast, hands-on analysis. RevenueCat hosts a first-party remote MCP server that looks up live subscribers, entitlements, and purchases; the Metabase CLI'supload command loads a CSV into Metabase and creates a ready-to-query table and model. For analysis, use a read-focused API v2 token.
Example workflow
- Ask the RevenueCat MCP which subscribers are in a trial that ends this week, or list the products with the most refunds in the last 30 days.
- Export the customers, subscriptions, and transactions you want to keep as CSVs.
- Run
mb upload csvto load them into Metabase as tables and models, then build questions and dashboards on top.
Be honest about the limits
- The RevenueCat MCP is great for live lookups — not for scheduled or audited revenue reporting.
- A CSV upload is a point-in-time snapshot; MRR movement and cohorts still need a warehouse sync, or refresh with
mb upload replace. - Use a read-focused API v2 token so analysis can't trigger writes, and respect RevenueCat API rate limits.
mb upload csvneeds an uploads database configured under Admin → Settings → Uploads.
How do you set up the RevenueCat MCP server and the Metabase CLI?
RevenueCat MCPofficial
- Endpoint
https://mcp.revenuecat.ai/mcp- Transport
- Remote (Streamable HTTP)
- Auth
Authorization: Bearerwith an API v2 token- Scope
- Use a read-focused token for analysis work
Metabase CLIofficial
- Install
npm install -g @metabase/cli- Auth
mb auth login(browser OAuth on v62+, or an API key)- Load data
mb upload csv --file data.csv- Requires
- An uploads database (Admin → Settings → Uploads)
# RevenueCat (remote, API v2 token)
claude mcp add --transport http revenuecat https://mcp.revenuecat.ai/mcp \
--header "Authorization: Bearer <YOUR_RC_V2_API_TOKEN>"{
"mcpServers": {
"revenuecat": {
"url": "https://mcp.revenuecat.ai/mcp",
"headers": {
"Authorization": "Bearer <YOUR_RC_V2_API_TOKEN>"
}
}
}
}Generate an API v2 token in the RevenueCat dashboard under Project settings → API keys. Clients without native remote support can wrap the URL with the mcp-remote bridge.
# Install the Metabase CLI
npm install -g @metabase/cli
# Log in (opens your browser; requires Metabase v62+)
mb auth login --url https://your-metabase.example.com
# Load a RevenueCat CSV export — creates a table AND a model
mb upload csv --file revenuecat-subscriptions.csv --collection root
# Refresh that same table later from a new export
mb upload replace <table-id> --file revenuecat-subscriptions.csvThe Metabase CLI stores its credentials securely after mb auth login.
Can you generate a RevenueCat dashboard with AI?
Yes. Use the prompt below with any assistant that can run the RevenueCat MCP server and the Metabase CLI. It works end to end: if RevenueCat tables already exist in Metabase it analyzes those; otherwise it pulls the data over the RevenueCat MCP, loads it with mb upload csv, then builds the dashboard — normalizing MRR and skipping cards it has no data for.
Create a polished Metabase dashboard for RevenueCat subscription analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.
Goal: Help founders and growth leaders understand mobile/web subscription
revenue, trials, conversion, churn, and LTV from RevenueCat data.
Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for RevenueCat tables and
models). If durable RevenueCat data is already present — synced from a warehouse
or uploaded earlier — use it and skip to Step 2.
- If nothing is there, pull it with the RevenueCat MCP server using a read-focused
API v2 token: customers/subscribers, subscriptions, entitlements, products, and
transactions (purchases, renewals, trials, refunds). Write each result to a CSV,
then load it with the Metabase CLI — run "mb upload csv --file <export>.csv" so
each upload creates a table and a ready-to-query model. Use "mb upload replace
<table-id> --file <export>.csv" to refresh an existing table instead of creating
duplicates.
Step 2 — Inspect before querying:
Do not assume exact table names. Map the available raw tables into these
analytical concepts where possible: Customers/subscribers, Subscriptions,
Entitlements, Products, Transactions (purchases, renewals, trials, refunds),
Store, and Country. Inspect the actual tables and column names first.
Important:
- Build on whatever data is present; don't claim Metabase connects natively to
RevenueCat — it reads a database or CLI-uploaded tables.
- Compute MRR from active subscriptions, normalizing every product to a monthly
amount (annual / 12, weekly, etc.) and using proceeds/price in a single
reporting currency (RevenueCat provides price_in_usd fields — prefer them).
- Separate voluntary churn from billing (failed-renewal) churn.
- Treat trials and intro offers as non-revenue until they convert.
- Exclude refunds from net revenue and show their impact separately.
- Only build a card if its underlying column/metric exists in the data.
- A single CSV is a point-in-time snapshot: MRR movement and cohorts need history,
so build trend cards only if a warehouse sync or multiple uploads provide it.
Dashboard title: RevenueCat Subscription Overview
Sections:
1. Executive summary (KPI cards): MRR; Active subscriptions; Net new MRR this
month; Trial-to-paid conversion %; Subscription churn %; Refund rate %.
2. Subscriptions & MRR: MRR movement by month; Active subscriptions by product
and store.
3. Trials & conversion: Trial starts; Trial-to-paid conversion by product, store,
and country; Time-to-convert.
4. Churn & retention: Subscription retention by cohort; Voluntary vs. billing
churn; Grace-period recovery.
5. LTV & cohorts: Cumulative revenue by install cohort; ARPU/ARPPU; Revenue by
store, country, and platform.
Filters: Product, Store (App Store/Play/Stripe), Country, Platform, Date range.
Reuse the models Metabase auto-created from uploaded CSVs, or (for a warehouse)
create reusable models: modeled_rc_subscriptions, modeled_rc_transactions, and
modeled_rc_mrr (a monthly per-subscription MRR model).
Output: Build the dashboard if you have permission; otherwise provide the exact
questions, SQL, model definitions, and layout. Include caveats for any metric
that cannot be calculated from the available data. Reconcile totals against
RevenueCat Charts. Keep it practical, dense, and executive-readable. Avoid
vanity metrics.How do you build the RevenueCat → Metabase pipeline?
For dashboards that need history and reliability, land RevenueCat data in a database first, then connect Metabase to that database.
Connector options
- REST API v2 (free, raw) — paginate customers, subscriptions, and purchases into your own pipeline when you need custom shaping.
- Webhooks (free, events) — stream subscription lifecycle events into a table for near-real-time dashboards.
- Scheduled data exports (first-party) — RevenueCat drops transaction/event exports to S3, GCS, Azure, or directly into BigQuery, so you build on modeled tables.
Notes
- Land raw exports first, then build clean models on top.
- Prefer RevenueCat's
price_in_usd/ proceeds fields so revenue is already in one currency. - Timestamps often arrive as epoch milliseconds — convert once in a model layer.
- MRR is derived, not stored: build it from active subscriptions and normalized product prices.
How should you model RevenueCat data in Metabase?
Core tables
| Concept | Grain | Key columns |
|---|---|---|
customers | one row per subscriber | app_user_id, original_app_user_id, first_seen_at, country |
subscriptions | one row per subscription | app_user_id, product_identifier, store, purchase_at, expiration_at, auto_renew_status |
transactions | one row per purchase/renewal | app_user_id, product_identifier, price_in_usd, is_trial_period, is_refunded, purchase_at |
entitlements | one row per grant | app_user_id, entitlement_id, product_identifier, expires_at |
Modeling advice
- Build a
modeled_rc_mrrtable: one row per subscription per month with a normalized monthly amount in USD — the backbone of every revenue chart. - Use
original_app_user_idto stitch a subscriber's aliases into one identity across devices and stores. - Treat trials and intro offers as non-revenue until conversion; flag them explicitly.
- Separate store/platform (App Store, Play, web) so tax and fee differences are visible.
- Reconcile modeled MRR against RevenueCat Charts before anyone trusts the numbers.
Which RevenueCat metrics should you track in Metabase?
| Metric | Definition | Notes |
|---|---|---|
| MRR | Sum of active subscriptions' normalized monthly amount. | Use price_in_usd; exclude trials until converted. |
| Trial-to-paid conversion | Trials that convert ÷ trials started. | Segment by product, store, and country. |
| Subscription churn rate | Canceled/lapsed ÷ active at period start. | Split voluntary vs. billing (failed-renewal). |
| Net revenue retention | Cohort MRR including renewals and upgrades. | Watch resubscribes and win-backs. |
| LTV | Cumulative revenue per subscriber by cohort. | Use proceeds (after store cut) for a true figure. |
| Refund rate | Refunded transactions ÷ transactions. | Store policies differ; segment by store. |
What SQL powers RevenueCat dashboards in Metabase?
These assume the modeled tables above (PostgreSQL dialect). Adjust identifiers to match your export schema.
Sum a monthly per-subscription MRR model in USD.
-- Requires a monthly MRR model built from RevenueCat subscription data
SELECT
ROUND(SUM(mrr_usd), 2) AS mrr_usd,
ROUND(SUM(mrr_usd) * 12, 2) AS arr_usd,
COUNT(*) AS active_subscriptions
FROM modeled_rc_mrr
WHERE month = date_trunc('month', CURRENT_DATE);How well trials convert across your product catalog.
-- Trial-to-paid conversion by product
SELECT
product_identifier,
COUNT(*) FILTER (WHERE is_trial_period) AS trials_started,
COUNT(*) FILTER (WHERE converted_to_paid) AS converted,
ROUND(100.0 * COUNT(*) FILTER (WHERE converted_to_paid)
/ NULLIF(COUNT(*) FILTER (WHERE is_trial_period), 0), 1) AS conversion_pct
FROM revenuecat_transactions
WHERE purchase_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY product_identifier
ORDER BY trials_started DESC;Refunded transactions as a share of all transactions.
SELECT
date_trunc('month', purchase_at) AS month,
store,
COUNT(*) AS transactions,
COUNT(*) FILTER (WHERE is_refunded) AS refunds,
ROUND(100.0 * COUNT(*) FILTER (WHERE is_refunded)
/ NULLIF(COUNT(*), 0), 2) AS refund_rate_pct
FROM revenuecat_transactions
GROUP BY 1, store
ORDER BY 1, refund_rate_pct DESC;What are common mistakes when analyzing RevenueCat in Metabase?
original_app_user_id so one person isn't several subscribers.