RevenueCat × Metabase

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.

Heads up: Metabase connects to databases and warehouses — it does not ship a native RevenueCat connector. For dashboards that need history and reliability, you'll sync RevenueCat into a database first (covered below).

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.

1 · MCP + CLI route (AI-assisted)

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.

Best for
  • 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
Trade-offs
  • 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
2 · Pipeline route (warehouse-backed)

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.

Best for
  • 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
Trade-offs
  • 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?

For: Founders, growth

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)
For: Growth, lifecycle

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)
For: Growth, RevOps

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)
For: Finance, leadership

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 csv to 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 csv needs 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: Bearer with 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)
ClaudeClaude Code CLI
# RevenueCat (remote, API v2 token)
claude mcp add --transport http revenuecat https://mcp.revenuecat.ai/mcp \
  --header "Authorization: Bearer <YOUR_RC_V2_API_TOKEN>"
Cursor~/.cursor/mcp.json or .cursor/mcp.json
{
  "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.

TerminalLoad a RevenueCat CSV with the Metabase CLI
# 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.csv

The Metabase CLI stores its credentials securely after mb auth login.

Verify before shipping: confirm an uploads database is enabled under Admin → Settings → Uploads (Metabase docs) and the current RevenueCat MCP setup in the RevenueCat MCP docs. Use a read-focused API v2 token for analysis work.

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.

Prompt for creating a RevenueCat Subscription Overview dashboard
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.

No paid tool required. A fully free stack: a small dlt or hand-written script (extract) → a free Postgres database like Neon or Supabase (load) → a scheduler such as GitHub Actions cron (host) → Metabase (visualize). For hosting and scheduling details, see our data pipeline guide.

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

ConceptGrainKey columns
customersone row per subscriberapp_user_id, original_app_user_id, first_seen_at, country
subscriptionsone row per subscriptionapp_user_id, product_identifier, store, purchase_at, expiration_at, auto_renew_status
transactionsone row per purchase/renewalapp_user_id, product_identifier, price_in_usd, is_trial_period, is_refunded, purchase_at
entitlementsone row per grantapp_user_id, entitlement_id, product_identifier, expires_at

Modeling advice

  • Build a modeled_rc_mrr table: one row per subscription per month with a normalized monthly amount in USD — the backbone of every revenue chart.
  • Use original_app_user_id to 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?

MetricDefinitionNotes
MRRSum of active subscriptions' normalized monthly amount.Use price_in_usd; exclude trials until converted.
Trial-to-paid conversionTrials that convert ÷ trials started.Segment by product, store, and country.
Subscription churn rateCanceled/lapsed ÷ active at period start.Split voluntary vs. billing (failed-renewal).
Net revenue retentionCohort MRR including renewals and upgrades.Watch resubscribes and win-backs.
LTVCumulative revenue per subscriber by cohort.Use proceeds (after store cut) for a true figure.
Refund rateRefunded 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.

Current MRR and ARRPostgreSQL

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);
Trial-to-paid conversion by productPostgreSQL

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;
Refund rate by storePostgreSQL

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?

Treating a live MCP lookup or a one-off CSV as governed revenue reporting.→ Use the RevenueCat MCP and CSV uploads for lookups and triage; build warehouse-backed Metabase dashboards for anything the team depends on.
Counting trials as revenue.→ Trials and intro offers aren't paid yet — exclude them from MRR until they convert.
Ignoring the store's cut.→ App Store and Play take a commission — use proceeds (net) for LTV, not list price.
Double-counting subscribers across devices.→ Stitch aliases with original_app_user_id so one person isn't several subscribers.
Blending voluntary and billing churn.→ Separate cancellations from failed-renewal churn — the fixes are completely different.
Never reconciling with RevenueCat Charts.→ Sanity-check modeled MRR against RevenueCat's own charts before trusting them.

Related analytics

Related metrics

Related integrations

FAQ

Does Metabase connect natively to RevenueCat?
No. Metabase reads SQL databases and warehouses. Sync RevenueCat into a database first (scheduled data exports, the REST API v2, or webhooks), then connect Metabase to that database.
How do I quickly analyze RevenueCat data without a warehouse?
Pull the objects you need with the RevenueCat MCP server (use a read-focused API v2 token), export them to CSV, and run `mb upload csv --file data.csv` with the Metabase CLI. It creates a table and a model you can build questions on right away. You'll need an uploads database enabled under Admin → Settings → Uploads. Refresh later with `mb upload replace`, or move to the pipeline route when you need history.
Why use Metabase if RevenueCat already has charts?
RevenueCat Charts are great for subscription KPIs. Metabase lets you join that data with product usage, ad spend, and attribution to answer questions RevenueCat can't — like LTV by acquisition channel — and to govern shared dashboards.
Should I use list price or proceeds for revenue?
Use proceeds (net of the store commission) for LTV and net revenue. RevenueCat exposes price and proceeds fields — pick one consistently and label it.