Paddle × Metabase

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.

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

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.

1 · MCP + CLI route (AI-assisted)

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.

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

Durable dashboards with history

Sync Paddle into a database or warehouse with a connector, webhooks, or the API, then point Metabase at it.

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

For: Founders, finance

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

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

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

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 csv to 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 csv needs 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.json examples.

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
# 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"
Cursor~/.cursor/mcp.json or .cursor/mcp.json
{
  "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.

TerminalLoad a Paddle 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 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.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 Paddle MCP endpoints and auth in the Paddle developer docs. Scope the key to read-only for analysis work.

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.

Prompt for creating a Paddle Revenue Overview dashboard
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.

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

  • 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, and earnings — 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

TableGrainKey columns
customersone row per customerid, email, created_at, status
subscriptionsone row per subscriptionid, customer_id, status, started_at, next_billed_at, canceled_at, scheduled_change
subscription_itemsone row per linesubscription_id, price_id, quantity, status
pricesone row per priceid, product_id, unit_price_amount, currency_code, billing_interval, billing_frequency
transactionsone row per transactionid, customer_id, subscription_id, status, billed_at, details_totals_total, details_totals_tax, details_totals_earnings
adjustmentsone row per adjustmentid, transaction_id, action (refund/credit), total, created_at

Modeling advice

  • Build a modeled_paddle_mrr table: 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_change to find subscriptions set to cancel or pause at period end.
  • Reconcile net earnings against Paddle payouts.

Which Paddle metrics should you track in Metabase?

MetricDefinitionNotes
MRRSum of active subscriptions' normalized monthly amount.Recurring only; exclude one-time items.
Net revenueEarnings after tax and Paddle fees.Distinct from gross billed amount.
Revenue churn rateChurned 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 ratePast-due/failed transactions ÷ attempted transactions.The main driver of involuntary churn.
ARPUMRR ÷ active customers.Decide customer vs. account grain.
LTVARPU × 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.

Current MRR and ARRPostgreSQL

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;
Gross vs. net revenue by monthPostgreSQL

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;
At-risk transactionsPostgreSQL

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?

Treating a live MCP lookup or a one-off CSV as governed revenue reporting.→ Use the Paddle MCP and CSV uploads for lookups and triage; build warehouse-backed Metabase dashboards for anything finance depends on.
Reporting the billed total as your revenue.→ Paddle is merchant of record — subtract tax and fees to get net earnings, and show gross vs. net separately.
Leaving amounts in minor units (or as strings).→ Cast and divide by 100 in a model layer so every chart reads in real money.
Counting one-time charges as MRR.→ MRR is recurring subscription revenue only — keep non-recurring items out.
Missing scheduled cancellations.→ Read scheduled_change so cancel-at-period-end subscriptions show up in churn forecasts.
Never reconciling with payouts.→ Sanity-check net earnings against Paddle payouts before trusting the numbers.

Related analytics

Related metrics

Related integrations

FAQ

Does Metabase connect natively to Paddle?
No. Metabase reads SQL databases and warehouses. Sync Paddle into a database first (webhooks, the API, or dlt), then connect Metabase to that database.
How do I quickly analyze Paddle data without a warehouse?
Pull the objects you need with the Paddle MCP server (use a read-only API key, and the sandbox endpoint for testing), 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.
Where is the Paddle MCP server hosted?
Paddle hosts a remote MCP server at https://mcp.paddle.com/mcp (live) and https://sandbox-mcp.paddle.com/mcp (sandbox), authenticated with a Bearer API key. Paddle also publishes Cursor mcp.json examples and one-click install links.
What's the cheapest way to sync Paddle into a database?
A small dlt or hand-written script against the Paddle API (or Paddle webhooks) loading into a free Postgres tier like Neon or Supabase, scheduled with GitHub Actions cron, can run at $0 for small volumes. There's no native Paddle connector for managed ELT tools today, so a code-based sync is usually the path.
How does merchant-of-record billing affect my revenue metrics?
Paddle collects and remits sales tax and takes a fee, so the amount billed is not your revenue. Model gross billed, tax, and net earnings separately, and report net earnings as revenue.