Canny × Metabase

How to build Canny dashboards in Metabase

Canny is a customer feedback platform where users post and vote on feature requests across public or private boards. 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 Canny MCP server and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that syncs Canny 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 Canny 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 Canny.

How do you connect Canny 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 Canny 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 Canny 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 Canny data into a database or warehouse with a connector, native export, or API pipeline, then point Metabase at it.

Best for
  • Canny reporting that product leadership depends on
  • Joining Canny data with CRM, support, product analytics, or revenue data
  • Long-run trends for feature request pipeline by status and vote velocity on open posts
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 Canny data in Metabase?

  • Feature request pipeline by status — built from posts (feature requests) and the related votes, comments, boards data your sync exposes.
  • Vote velocity on open posts — built from posts (feature requests) and the related votes, comments, boards data your sync exposes.
  • Requests by customer segment — built from posts (feature requests) and the related votes, comments, boards data your sync exposes.
  • Time from post to shipped — built from posts (feature requests) and the related votes, comments, boards data your sync exposes.
  • Board health and response rate — built from posts (feature requests) and the related votes, comments, boards data your sync exposes.

Which Canny 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 Canny MCP server with the Metabase CLI?

Pair the Canny 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 posts (feature requests) 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 Canny MCP and the Metabase CLI?

Canny MCP serverofficial

Transport
Hosted remote MCP via Streamable HTTP (beta)
Auth
OAuth through Canny (Ideas beta, Pro plan and above)
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": {
    "canny": {
      "url": "https://api.canny.io/api/mcp/v1"
    }
  }
}

The official server is double-gated: your workspace needs the Ideas beta and a Pro plan or above. On other plans, the community @opensourceops/canny-mcp server (local, read-only by default, using a Canny API key) covers the same analytics reads. One API quirk to know either way: every Canny endpoint is a POST with the apiKey in the request body. Endpoint verified July 2026.

TerminalLoad a Canny 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 posts-feature-requests export — creates a table AND a model
mb upload csv --file canny-posts-feature-requests.csv --collection root

# Refresh that same table later from a new export
mb upload replace <table-id> --file canny-posts-feature-requests.csv

Can you generate a Canny dashboard with AI?

Yes. Use the prompt below with any assistant that can run the Canny MCP server and the Metabase CLI. It works end to end: if Canny 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 Canny Product Feedback Overview dashboard
Create a polished Metabase dashboard for Canny 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 Canny data.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for canny tables and
  models). If durable Canny 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 Canny MCP server:
  posts (feature requests), plus votes, comments, boards.
  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
  Canny — 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: Canny 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 Canny data into a database or warehouse?

For dashboards that need history and reliability, land Canny 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 Canny API for control over objects, fields, and refresh cadence.
  • MCP + CSV — use this for quick exploration and one-off slices.

Sync posts, votes, comments, and boards with the community Airbyte source or Fivetran's Lite connector, or script the Canny API — pagination is cursor-based and every call is a POST, so most teams wrap it in a small export script.

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 Canny data in Metabase?

Core tables

TableGrainKey columns
feedback_itemsone row per postid, title, board, status, votes, commenters, created_at, status_changed_at, shipped_at, announced_at
canny_votesone row per voteid, post_id, voter_id, company_id, created_at
canny_status_changesone row per post status changeid, post_id, from_status, to_status, changed_at

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 Canny 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 Canny 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 Canny in Metabase?

Syncing raw event or session streams into the warehouse.→ Land entities, votes, responses, and daily rollups. Raw streams belong in Canny; 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 Canny?
No. Metabase reads databases and warehouses. Sync Canny data into a database first, or upload a CSV with the Metabase CLI, then build Metabase models and dashboards on top.
Should Metabase replace Canny?
No — they answer different questions. Canny 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.