Productboard × Metabase

How to build Productboard dashboards in Metabase

Productboard is a product management platform where teams collect customer feedback, prioritize features, and plan roadmaps. Metabase is where you turn those customer signals into shared, trustworthy dashboards. This guide covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the Productboard MCP server and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that syncs Productboard data into a database so you can build dashboards anyone can read.

Heads up: Metabase connects to databases and warehouses — it does not ship a native Productboard connector, and a BI warehouse is the wrong home for raw event or session streams. Sync entities and aggregates — requests, responses, votes, daily usage rollups — and leave the raw firehose in Productboard.

How do you connect Productboard to Metabase?

Most teams combine both routes: use MCP and CLI uploads for a fast first pass, then move recurring product reporting to a warehouse-backed model.

1 · MCP + CLI route (AI-assisted)

Live data in, quick analysis out

Pair the Productboard MCP server with the Metabase CLI. Use MCP for live lookups, write a scoped result to CSV, then load it into Metabase as a ready-to-query table and model.

Best for
  • Quick lookups such as "show me feature request pipeline by status"
  • Loading a Productboard export into Metabase in seconds
  • Spot-checks and one-off analyses without a warehouse
Trade-offs
  • Great for exploration, not governed recurring reporting
  • Use read-only/scoped credentials wherever the MCP server supports them
  • CSV uploads are snapshots — refresh or move to the pipeline for history
2 · Pipeline route (warehouse-backed)

Durable dashboards with history

Sync Productboard data into a database or warehouse with a connector, native export, or API pipeline, then point Metabase at it.

Best for
  • Productboard reporting that product leadership depends on
  • Joining Productboard data with CRM, support, product analytics, or revenue data
  • Long-run trends for feature request pipeline by status and feedback volume by source and segment
Trade-offs
  • You own the refresh schedule and the modeling layer
  • Sync entities and rollups — not raw event or session firehoses
  • Metric definitions must be consistent across teams and tools

What can you analyze from Productboard data in Metabase?

  • Feature request pipeline by status — built from feedback notes and the related features, releases, objectives data your sync exposes.
  • Feedback volume by source and segment — built from feedback notes and the related features, releases, objectives data your sync exposes.
  • Insights-to-roadmap conversion — built from feedback notes and the related features, releases, objectives data your sync exposes.
  • Time from note to shipped feature — built from feedback notes and the related features, releases, objectives data your sync exposes.
  • Feedback coverage of roadmap themes — built from feedback notes and the related features, releases, objectives data your sync exposes.

Which Productboard dashboards should you build in Metabase?

For: PMs, product ops

Feature request pipeline

Where requests sit and how fast they move.

  • Open requests by status (stacked bar)
  • New requests per week (line)
  • Aging open requests by bucket (table)
  • Requests shipped per quarter (bar)
For: PMs, customer-facing teams

Voice of the customer

Which themes and segments drive feedback volume.

  • Feedback volume by product area (bar)
  • Requests by customer segment (stacked bar)
  • Top requests by vote velocity (table)
  • New feedback themes this month (table)
For: Product leadership

Roadmap alignment

Whether the roadmap tracks what customers ask for.

  • Share of requests linked to roadmap items (number + trend)
  • Votes on planned vs. unplanned work (bar)
  • Requests closed as won't-do per quarter (line)
  • Revenue-weighted request ranking (table)
For: PMs, support liaison

Close the loop

Whether requesters hear back when things ship.

  • Median time from request to shipped (line)
  • Shipped requests with requesters notified (number)
  • Status changes per week (bar)
  • Oldest open requests with high votes (table)

How do you use the Productboard MCP server with the Metabase CLI?

Pair the Productboard MCP server with the Metabase CLI for fast, hands-on analysis. MCP is useful for scoped lookups and summarized exports; the Metabase CLI's upload command loads CSV data into Metabase and creates a ready-to-query table and model.

Example workflow

  • Ask the MCP server for the top feedback notes by vote activity this quarter, with status, product area, and segment fields.
  • Export the result as CSV, keeping stable IDs, statuses, segments, and timestamps.
  • Run mb upload csv to load it into Metabase as a table and model, then build questions and dashboards on top.

Be honest about the limits

  • MCP lookups are excellent for exploration, not scheduled reporting.
  • A CSV upload is a snapshot; refresh it with mb upload replace or move to the pipeline for real history.
  • Status-change timestamps are required for time-to-close-the-loop and pipeline aging trends.
  • mb upload csv needs an uploads database configured under Admin → Settings → Uploads.

How do you set up Productboard MCP and the Metabase CLI?

Productboard MCP serverofficial

Transport
Hosted remote MCP via Streamable HTTP (beta)
Auth
OAuth (dynamic client registration with PKCE); an admin enables it under Settings → MCP Server
Best for
Live scoped lookup and export

Metabase CLIofficial

Install
npm install -g @metabase/cli
Auth
mb auth login
Load data
mb upload csv --file data.csv
Requires
An uploads database (Admin → Settings → Uploads)
MCPExample MCP client config
{
  "mcpServers": {
    "productboard": {
      "url": "https://mcp.productboard.com"
    }
  }
}

Check what it covers before planning around it: the official server is built for Spark, Productboard's AI spec assistant, and its documented tools reach specs, spec comments, and entity status — not feedback notes, companies, or votes. It also needs a Spark-enabled workspace. For the note- and vote-level data this guide's dashboards run on, use the Public API, or a community server such as npx -y productboard-mcp (third-party, API-token auth, several unaffiliated forks — pick deliberately). Verified July 2026.

TerminalLoad a Productboard 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 feedback-notes export — creates a table AND a model
mb upload csv --file productboard-feedback-notes.csv --collection root

# Refresh that same table later from a new export
mb upload replace <table-id> --file productboard-feedback-notes.csv

Can you generate a Productboard dashboard with AI?

Yes. Use the prompt below with any assistant that can run the Productboard MCP server and the Metabase CLI. It works end to end: if Productboard tables already exist in Metabase it analyzes those; otherwise it pulls scoped, summarized data over MCP, loads it with mb upload csv, then builds the dashboard and caveats any metric that needs missing history.

Prompt for creating a Productboard Product Feedback Overview dashboard
Create a polished Metabase dashboard for Productboard product feedback analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.

Goal: Help product teams understand request pipeline health, voice-of-customer themes, roadmap alignment, and close-the-loop speed from Productboard data.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for productboard tables and
  models). If durable Productboard data is already present — synced from a warehouse
  or uploaded earlier — use it and skip to Step 2.
- If nothing is there, pull a scoped, summarized export with the Productboard MCP server:
  feedback notes, plus features, releases, objectives.
  Prefer aggregated or rollup views over raw events. 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 or column names. Inspect available fields, statuses,
segments, and timestamps, and whether history exists before creating duration
or trend cards.

Important:
- Build on whatever data is present; don't claim Metabase connects natively to
  Productboard — it reads a database or CLI-uploaded tables.
- Never load raw event or session streams into Metabase; use rollups, entity
  tables, and response- or request-grain data.
- Compute NPS as % promoters (9-10) minus % detractors (0-6) on the 0-10 scale,
  and always show response volume next to the score.
- Only compute durations (time to close, time to complete) when the required
  timestamps exist.
- Exclude internal, test, and anonymous-preview activity from headline cards,
  and segment by plan or customer segment where the field exists.
- A single CSV is a point-in-time snapshot: only build trend cards if there is a
  usable date column or multiple periods have been uploaded.

Dashboard title: Productboard Product Feedback Overview

Sections:
1. Executive summary: Open requests; New requests last 30 days; Shipped last
   quarter; Median votes per open request; Median time to close.
2. Pipeline: Requests by status; aging buckets; status-change flow by week.
3. Voice of customer: Volume by product area and segment; top requests by
   vote velocity.
4. Roadmap alignment: Share linked to roadmap items; votes on planned vs.
   unplanned work.
5. Close the loop: Time from request to shipped; shipped-with-notification
   share.

Filters: Date range, Product area, Segment, Status, Survey or Feature.

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.

How do you sync Productboard data into a database or warehouse?

For dashboards that need history and reliability, land Productboard data in a database first, then connect Metabase to that database.

Connector options

  • Managed ETL or native export — use a connector or the vendor's own warehouse sync when one covers the objects you need.
  • Custom pipeline — use the Productboard Public API for control over objects, fields, and refresh cadence.
  • MCP + CSV — use this for quick exploration and one-off slices.

Sync notes, features, releases, objectives, and companies with Fivetran's Productboard connector or the Airbyte source, or script the Public API for control over which workspaces and fields land.

Notes

  • Decide the grain first — request, response, or daily rollup — it drives every trend card and the warehouse bill.
  • Land raw entity tables first, then build clean Metabase models on top.
  • Normalize product area, status, source, customer segment, vote-count, and status-changed-at fields.

How should you model Productboard data in Metabase?

Core tables

TableGrainKey columns
feedback_itemsone row per feedback noteid, title, source, company_id, product_area, created_at, linked_feature_id, status
productboard_featuresone row per featureid, name, status, product_area, release_id, created_at, status_changed_at
productboard_companiesone row per companyid, name, domain, segment, note_count

Modeling advice

  • Build a clean feedback_items model with common columns across tools, so multi-source dashboards don't fork definitions.
  • Separate entity tables (requests, surveys, features, accounts) from time-series rollups and event-grain tables.
  • Exclude internal users, test workspaces, and preview traffic from headline metrics; keep segment as an explicit column.
  • Use stable IDs for account, request, and survey joins; display names change.

Which Productboard metrics should you track in Metabase?

MetricDefinitionNotes
Feedback vote velocityNew votes on open requests per period, not lifetime totals.Velocity beats totals — totals only ever go up.
Time to close the loopMedian time from request created to shipped and announced.Use medians; one two-year-old request wrecks an average.
Net Promoter ScorePercent promoters minus percent detractors on the 0-10 scale.Trend it with response volume alongside.
Feature adoption rateAccounts using a shipped feature over all active accounts.The proof that shipping a request paid off.

What SQL powers Productboard dashboards in Metabase?

These assume a cleaned analytical model in a warehouse (PostgreSQL dialect). Adjust table and column names to match your pipeline.

Open request pipeline with median agePostgreSQL

Where requests sit, and how stale each status is.

SELECT
  status,
  COUNT(*) AS open_requests,
  percentile_cont(0.5) WITHIN GROUP (
    ORDER BY CURRENT_DATE - created_at::date
  ) AS median_age_days
FROM feedback_items
WHERE status NOT IN ('shipped', 'closed')
GROUP BY status
ORDER BY open_requests DESC;
Top open requests by vote velocityPostgreSQL

Votes in the last 30 days, not lifetime totals.

SELECT
  f.title,
  f.product_area,
  COUNT(*) AS votes_last_30_days
FROM votes v
JOIN feedback_items f ON f.id = v.feedback_item_id
WHERE v.created_at >= CURRENT_DATE - INTERVAL '30 days'
  AND f.status NOT IN ('shipped', 'closed')
GROUP BY f.title, f.product_area
ORDER BY votes_last_30_days DESC
LIMIT 20;
Median days from request to shipped and announcedPostgreSQL

Close-the-loop speed by quarter.

-- The loop closes when requesters are told, so measure to announced_at.
-- No announcement tracking? Swap in shipped_at and call it time to ship.
SELECT
  date_trunc('quarter', announced_at) AS quarter,
  COUNT(*) AS closed_loop_requests,
  percentile_cont(0.5) WITHIN GROUP (
    ORDER BY EXTRACT(EPOCH FROM (announced_at - created_at)) / 86400
  ) AS median_days_to_close_loop
FROM feedback_items
WHERE shipped_at IS NOT NULL
  AND announced_at IS NOT NULL
GROUP BY 1
ORDER BY 1;

What are common mistakes when analyzing Productboard in Metabase?

Syncing raw event or session streams into the warehouse.→ Land entities, votes, responses, and daily rollups. Raw streams belong in Productboard; the warehouse is for trends and joins.
Ranking requests by lifetime vote totals.→ Old requests always win that ranking. Rank by vote velocity — votes per recent period — and weight by customer segment or revenue.
Reporting the pipeline from a current-state snapshot only.→ Without status-change history you can't see aging or flow. Sync status changes (or snapshot weekly) before promising trend cards.
Building dashboards from live MCP lookups only.→ MCP is useful for exploration; durable dashboards need a database-backed model with history.

Related analytics

Related dashboards

Related integrations

FAQ

Does Metabase connect natively to Productboard?
No. Metabase reads databases and warehouses. Sync Productboard data into a database first, or upload a CSV with the Metabase CLI, then build Metabase models and dashboards on top.
Should Metabase replace Productboard?
No — they answer different questions. Productboard is built for collecting and acting on the signals it captures. Metabase is where you build governed, shareable reporting on top of the same data, and join it with CRM, support, product, and revenue data.
Should I sync every vote and comment?
Votes, yes — they're small, and vote-grain data powers velocity and segment analysis. Comments are worth syncing as counts and timestamps; sync full comment text only if you plan to categorize themes, and keep any personal data out of headline dashboards.
How do I weight feature requests by revenue?
Join requests to accounts through your CRM (match on company domain or account ID), then sum ARR per request instead of counting votes. It changes priorities dramatically — and it only works if the sync preserves the company or account field. See the feature request pipeline dashboard for the layout.