How to build Paddle revenue dashboards in Metabase
Paddle is the merchant of record for your subscriptions, handling billing, payments, and sales tax. Metabase is where you turn that billing activity into shared, trustworthy revenue dashboards. This guide covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the Paddle MCP server and loads a CSV into Metabase with the Metabase CLI for quick analysis, and a durable pipeline route that syncs Paddle into a database so you can build MRR, churn, and net-revenue dashboards anyone can read.
How do you connect Paddle to Metabase?
Most teams combine both routes: use the Paddle MCP server and Metabase CLI route to pull live data and stand up a quick analysis, and the pipeline route for the revenue dashboards finance depends on.
Live data in, quick analysis out
Pair the official Paddle MCP server (to look up live subscriptions, transactions, and customers) with the Metabase CLI, whose upload command loads a CSV into Metabase as a ready-to-query table and model.
- Quick lookups like "which subscriptions are past due right now?"
- Loading a Paddle CSV export into Metabase in seconds
- Spot-checks and one-off analyses without a warehouse
- Great for exploration, not governed revenue reporting
- Use the sandbox endpoint for testing and the live endpoint for real data
- CSV uploads are snapshots — refresh or move to the pipeline for history
Durable dashboards with history
Sync Paddle into a database or warehouse with a connector, webhooks, or the API, then point Metabase at it.
- MRR/ARR, churn, and net-revenue dashboards finance relies on
- Cohort and trend analysis over quarters and years
- Reconciling merchant-of-record payouts against billed revenue
- Requires a destination database and a sync to maintain
- You own the revenue definitions and refresh schedule
- As merchant of record, Paddle nets out tax and fees — model gross vs. net carefully
What can you analyze from Paddle data in Metabase?
- MRR and ARR — recurring revenue now and its monthly movement
- Churn and retention — customer and revenue churn, gross and net retention
- Gross vs. net revenue — what's billed vs. what you keep after tax and fees
- Failed payments and dunning — declines, recovery, and involuntary churn
- LTV and ARPU — value per customer and per account
- Cohort revenue — how each signup cohort retains and grows
- Refunds and adjustments — chargebacks, credits, and their revenue impact
Which Paddle dashboards should you build in Metabase?
MRR & ARR
The core recurring-revenue picture, month over month.
- MRR and ARR right now (number + trend)
- MRR movement: new, expansion, contraction, churn (waterfall)
- Net new MRR per month (bar)
- ARR by product and billing interval (bar)
Churn & retention
Where recurring revenue leaks and how well you keep it.
- Gross and net revenue retention by month (line)
- Customer vs. revenue churn rate (dual line)
- Cancellations by month (bar)
- Scheduled cancellations (cancel-at-period-end) (number)
Failed payments & dunning
Recover revenue lost to declines before it becomes churn.
- Failed transactions and $ at risk this month (number)
- Recovery rate after retries (line)
- Past-due subscriptions by age (table)
- Declines by payment method (bar)
Net revenue & cohorts
What you actually keep, and how cohorts behave.
- Gross vs. net revenue (after tax + fees) by month (bar)
- Revenue retention by signup-month cohort (heatmap)
- Cumulative LTV by cohort (line)
- ARPU by product (table)
How do you use the Paddle MCP server with the Metabase CLI?
Pair the Paddle MCP server with the Metabase CLI for fast, hands-on analysis. Paddle hosts a first-party remote MCP server that looks up live subscriptions, transactions, and customers; the Metabase CLI's upload command loads a CSV into Metabase and creates a ready-to-query table and model. For analysis, scope the Paddle key to read-only.
Example workflow
- Ask the Paddle MCP which subscriptions went
past_due, or pull a customer's transactions with tax and fees broken out. - 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 Paddle 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 the sandbox endpoint for testing and the live endpoint for production data.
mb upload csvneeds an uploads database configured under Admin → Settings → Uploads.
How do you set up the Paddle MCP server and the Metabase CLI?
Paddle MCP official
- Endpoint (live)
https://mcp.paddle.com/mcp- Endpoint (sandbox)
https://sandbox-mcp.paddle.com/mcp- Auth
Authorization: Bearer <PADDLE_API_KEY>- Note
- Paddle publishes Cursor
mcp.jsonexamples.
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)
# Paddle (live) — replace with sandbox host for testing
claude mcp add --transport http paddle https://mcp.paddle.com/mcp \
--header "Authorization:Bearer YOUR_PADDLE_API_KEY"{
"mcpServers": {
"paddle": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.paddle.com/mcp",
"--header", "Authorization:Bearer YOUR_PADDLE_API_KEY"
]
}
}
}Swap in https://sandbox-mcp.paddle.com/mcp and a sandbox API key while you test. Scope the key to read-only for analysis work.
# 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 Paddle CSV export — creates a table AND a model
mb upload csv --file paddle-subscriptions.csv --collection root
# Refresh that same table later from a new export
mb upload replace <table-id> --file paddle-subscriptions.csvThe Metabase CLI stores its credentials securely after mb auth login.
Can you generate a Paddle dashboard with AI?
Yes. Use the prompt below with any assistant that can run the Paddle MCP server and the Metabase CLI. It works end to end: if Paddle tables already exist in Metabase it analyzes those; otherwise it pulls the data over the Paddle MCP, loads it with mb upload csv, then builds the dashboard — separating gross from net and skipping cards it has no data for.
Create a polished Metabase dashboard for Paddle revenue analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.
Goal: Help founders and finance leaders understand recurring revenue, churn,
retention, failed payments, and net revenue from Paddle data.
Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for Paddle tables and
models). If durable Paddle 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 Paddle MCP server using a read-only API
key (use the sandbox endpoint to test): customers, subscriptions, subscription
items, products, prices, transactions, and adjustments. 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, Subscriptions, Subscription
items, Products, Prices, Transactions, Transaction line items, Adjustments
(refunds/credits), and Discounts. Inspect the actual tables and column names
first.
Important:
- Build on whatever data is present; don't claim Metabase connects natively to
Paddle — it reads a database or CLI-uploaded tables.
- Compute MRR from active subscription items, normalizing every price to a monthly
amount and converting amounts from the smallest currency unit (amounts are stored
as integer minor units, sometimes as strings).
- Paddle is a merchant of record: separate gross billed amount from net revenue
after tax and Paddle fees. Do not report tax collected as your revenue.
- Report revenue in a single reporting currency; if multiple currencies exist,
convert with a documented rate or caveat the mix.
- Separate voluntary churn from involuntary (failed-payment) churn.
- 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: Paddle Revenue Overview
Sections:
1. Executive summary (KPI cards): MRR; ARR; Active subscriptions; Net new MRR this
month; Gross revenue churn %; Net revenue retention (only if MRR-movement data
can be derived).
2. MRR movement: New, expansion, contraction, and churned MRR by month.
3. Churn & retention: Customer vs. revenue churn by month; Gross vs. net retention;
Scheduled cancellations.
4. Failed payments & dunning: Failed transactions and $ at risk; Recovery rate;
Past-due subscriptions by age.
5. Net revenue & cohorts: Gross vs. net revenue by month; Revenue retention by
signup-month cohort; Cumulative LTV by cohort; ARPU by product.
Filters: Product, Price, Billing interval, Currency, Country, Date range.
Reuse the models Metabase auto-created from uploaded CSVs, or (for a warehouse)
create reusable models: modeled_paddle_customers, modeled_paddle_subscriptions,
modeled_paddle_transactions, and modeled_paddle_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 the Paddle
dashboard and payouts. Keep it practical, dense, and executive-readable. Avoid
vanity metrics.How do you build the Paddle → Metabase pipeline?
For dashboards that need history and reliability, land Paddle data in a database first, then connect Metabase to that database.
Connector options
- dlt (free, code) — write a Python pipeline against the Paddle API for full control of streams and schema.
- Paddle API (free, raw) — the source of truth; paginate subscriptions, transactions, and customers and sync on a schedule.
- Paddle webhooks / notifications (first-party) — subscribe to subscription and transaction events and upsert them into your database for a full history.
- Airbyte custom source— no native Paddle source today; build one with the open-source CDK or use webhooks/API instead.
Notes
- Land raw tables first, then build clean models on top.
- Paddle amounts are integer minor units (sometimes strings) — cast and divide by 100 in your model layer.
- As merchant of record, Paddle reports
total,tax, andearnings— model gross vs. net so tax isn't counted as revenue. - MRR is derived: build it from active subscription items and prices.
How should you model Paddle data in Metabase?
Core tables
| Table | Grain | Key columns |
|---|---|---|
customers | one row per customer | id, email, created_at, status |
subscriptions | one row per subscription | id, customer_id, status, started_at, next_billed_at, canceled_at, scheduled_change |
subscription_items | one row per line | subscription_id, price_id, quantity, status |
prices | one row per price | id, product_id, unit_price_amount, currency_code, billing_interval, billing_frequency |
transactions | one row per transaction | id, customer_id, subscription_id, status, billed_at, details_totals_total, details_totals_tax, details_totals_earnings |
adjustments | one row per adjustment | id, transaction_id, action (refund/credit), total, created_at |
Modeling advice
- Build a
modeled_paddle_mrrtable: one row per subscription per month with a normalized monthly amount. - Split gross billed, tax, and net earnings into separate model columns so you never report tax as revenue.
- Normalize prices to a monthly figure and to one reporting currency.
- Read
scheduled_changeto find subscriptions set to cancel or pause at period end. - Reconcile net earnings against Paddle payouts.
Which Paddle metrics should you track in Metabase?
| Metric | Definition | Notes |
|---|---|---|
| MRR | Sum of active subscriptions' normalized monthly amount. | Recurring only; exclude one-time items. |
| Net revenue | Earnings after tax and Paddle fees. | Distinct from gross billed amount. |
| Revenue churn rate | Churned MRR ÷ MRR at period start. | Track separately from customer churn. |
| Net revenue retention | (Starting MRR + expansion − contraction − churn) ÷ starting MRR. | Over 100% means expansion beats churn. |
| Failed-payment rate | Past-due/failed transactions ÷ attempted transactions. | The main driver of involuntary churn. |
| ARPU | MRR ÷ active customers. | Decide customer vs. account grain. |
| LTV | ARPU × average customer lifetime (1 ÷ churn rate). | Treat as a range, not a point. |
What SQL powers Paddle dashboards in Metabase?
These assume the modeled tables above (PostgreSQL dialect, amounts in minor units). Adjust identifiers to match your warehouse.
Normalize active subscription items to a monthly amount and sum.
WITH monthly AS (
SELECT
si.subscription_id,
SUM(
CASE p.billing_interval
WHEN 'year' THEN p.unit_price_amount / 100.0 / 12.0
WHEN 'month' THEN p.unit_price_amount / 100.0
WHEN 'week' THEN p.unit_price_amount / 100.0 * 52.0 / 12.0
WHEN 'day' THEN p.unit_price_amount / 100.0 * 365.0 / 12.0
END * si.quantity / NULLIF(p.billing_frequency, 0)
) AS mrr
FROM subscription_items si
JOIN prices p ON p.id = si.price_id
JOIN subscriptions s ON s.id = si.subscription_id
WHERE s.status IN ('active', 'past_due')
GROUP BY si.subscription_id
)
SELECT ROUND(SUM(mrr), 2) AS mrr_now,
ROUND(SUM(mrr) * 12, 2) AS arr_now
FROM monthly;Merchant-of-record breakdown: billed total, tax collected, and your earnings.
SELECT
date_trunc('month', t.billed_at) AS month,
ROUND(SUM(t.details_totals_total) / 100.0, 2) AS gross_billed,
ROUND(SUM(t.details_totals_tax) / 100.0, 2) AS tax_collected,
ROUND(SUM(t.details_totals_earnings) / 100.0, 2) AS net_earnings
FROM transactions t
WHERE t.status = 'completed'
AND t.billed_at >= CURRENT_DATE - INTERVAL '12 months'
GROUP BY 1
ORDER BY 1;Past-due and canceled transactions by week — the dunning worklist.
SELECT
date_trunc('week', t.created_at) AS week,
COUNT(*) AS failed_transactions,
ROUND(SUM(t.details_totals_total) / 100.0, 2) AS dollars_at_risk
FROM transactions t
WHERE t.status IN ('past_due', 'canceled')
AND t.created_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY 1
ORDER BY 1;What are common mistakes when analyzing Paddle in Metabase?
scheduled_change so cancel-at-period-end subscriptions show up in churn forecasts.