How to build Fullstory dashboards in Metabase
Fullstory is a digital experience intelligence platform that captures session behavior — including frustration signals like rage clicks — across web and mobile apps. 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 Fullstory MCP server and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that syncs Fullstory data into a database so you can build dashboards anyone can read.
How do you connect Fullstory 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.
Live data in, quick analysis out
Pair the Fullstory 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.
- Quick lookups such as "show me session frustration signals by flow"
- Loading a Fullstory export into Metabase in seconds
- Spot-checks and one-off analyses without a warehouse
- 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
Durable dashboards with history
Sync Fullstory data into a database or warehouse with a connector, native export, or API pipeline, then point Metabase at it.
- Fullstory reporting that product leadership depends on
- Joining Fullstory data with CRM, support, product analytics, or revenue data
- Long-run trends for session frustration signals by flow and rage-click rate by page and release
- 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 Fullstory data in Metabase?
- Session frustration signals by flow — built from session and event rollups and the related defined events, frustration signals (rage and dead clicks), segments data your sync exposes.
- Rage-click rate by page and release — built from session and event rollups and the related defined events, frustration signals (rage and dead clicks), segments data your sync exposes.
- Conversion friction in key funnels — built from session and event rollups and the related defined events, frustration signals (rage and dead clicks), segments data your sync exposes.
- Defined-event adoption trends — built from session and event rollups and the related defined events, frustration signals (rage and dead clicks), segments data your sync exposes.
- Segment behavior comparison — built from session and event rollups and the related defined events, frustration signals (rage and dead clicks), segments data your sync exposes.
Which Fullstory dashboards should you build in Metabase?
Feature adoption
Which features get used, by whom, how often.
- Adoption rate by feature (bar)
- Weekly active users per feature (line)
- Features used per account (line)
- Unused features by segment (table)
Frustration signals
Where the product fights its users.
- Rage clicks per 1,000 sessions by page (bar)
- Dead and error clicks by flow (line)
- Frustrated-session share (number + trend)
- Top frustration pages this week (table)
Activation and funnels
How new users reach value.
- Activation rate by signup cohort (line)
- Funnel conversion by step (bar)
- Time to first key action (line)
- Biggest drop-off steps (table)
Account engagement
Usage as a leading indicator for retention.
- Usage breadth and depth by account (table)
- Engagement trend for top accounts (line)
- Accounts with declining usage (table)
- Usage by plan tier (bar)
How do you use the Fullstory MCP server with the Metabase CLI?
Pair the Fullstory 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 a daily rollup of session and event rollups for the flows or features you care about.
- Export the result as CSV, keeping stable IDs, statuses, segments, and timestamps.
- Run
mb upload csvto 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 replaceor move to the pipeline for real history. - Daily rollups are required for adoption and frustration trends — a single snapshot can't show direction.
mb upload csvneeds an uploads database configured under Admin → Settings → Uploads.
How do you set up Fullstory MCP and the Metabase CLI?
Fullstory MCP serverofficial
- Transport
- Hosted remote MCP via Streamable HTTP (beta)
- Auth
- OAuth through Fullstory — an admin must enable the MCP toggle under StoryAI features
- 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)
{
"mcpServers": {
"fullstory": {
"url": "https://api.fullstory.com/mcp/fullstory"
}
}
}The beta is double-gated: it's on for paying customers only after an administrator enables the MCP toggle under Settings → Account Management → StoryAI Features. If the connection fails after OAuth, check that gate before debugging the client. Endpoint verified July 2026.
# 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 session-and-event-rollups export — creates a table AND a model
mb upload csv --file fullstory-session-and-event-rollups.csv --collection root
# Refresh that same table later from a new export
mb upload replace <table-id> --file fullstory-session-and-event-rollups.csvCan you generate a Fullstory dashboard with AI?
Yes. Use the prompt below with any assistant that can run the Fullstory MCP server and the Metabase CLI. It works end to end: if Fullstory 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.
Create a polished Metabase dashboard for Fullstory product experience analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.
Goal: Help product teams understand feature adoption, frustration signals, activation funnels, and account engagement from Fullstory data.
Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for fullstory tables and
models). If durable Fullstory 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 Fullstory MCP server:
session and event rollups, plus defined events, frustration signals (rage and dead clicks), segments.
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
Fullstory — 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: Fullstory Product Experience Overview
Sections:
1. Executive summary: Weekly active users; Adoption rate of key features;
Frustrated-session share; Activation rate.
2. Adoption: Active accounts by feature; usage breadth per account.
3. Frustration: Rage, dead, and error clicks by page and flow.
4. Activation: Cohort funnel by step; time to first key action.
5. Accounts: Engagement trends; accounts with declining usage.
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 Fullstory data into a database or warehouse?
For dashboards that need history and reliability, land Fullstory 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 Fullstory APIs for control over objects, fields, and refresh cadence.
- MCP + CSV — use this for quick exploration and one-off slices.
Fullstory's native Anywhere: Warehouse sync delivers pre-transformed behavioral data hourly to BigQuery, Snowflake, or Redshift — the strongest pipeline in this cluster (raw events can go to S3 or GCS instead). Fivetran also ships a Fullstory connector for teams standardizing on managed ETL.
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 account, feature or flow, segment, usage-date, event-count, and user-count fields.
How should you model Fullstory data in Metabase?
Core tables
| Table | Grain | Key columns |
|---|---|---|
session_rollups | one row per page or flow per day | page_or_flow, usage_date, sessions, rage_clicks, dead_clicks, error_clicks, conversions |
fullstory_defined_events | one row per defined event per day | event_name, usage_date, event_count, user_count |
fullstory_segments | one row per segment per day | segment_name, snapshot_date, user_count, session_count |
Modeling advice
- Build a clean
product_usage_rollupsmodel 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 Fullstory metrics should you track in Metabase?
| Metric | Definition | Notes |
|---|---|---|
| Feature adoption rate | Accounts or users using a feature over all active accounts or users. | Pair adoption with frequency — one visit isn't adoption. |
| Rage-click rate | Rage clicks per session or per 1,000 sessions. | Normalize by traffic before comparing pages. |
| Activation rate | New signups reaching the product's value moment. | Define the value moment per product, then hold it stable. |
| Net Promoter Score | Percent promoters minus percent detractors on the 0-10 scale. | In-app NPS pairs naturally with usage segments. |
What SQL powers Fullstory dashboards in Metabase?
These assume a cleaned analytical model in a warehouse (PostgreSQL dialect). Adjust table and column names to match your pipeline.
Trailing 28-day adoption per feature.
WITH eligible_accounts AS (
-- One eligible population, used on BOTH sides of the ratio.
-- Add plan/entitlement filters here if the feature ships on some plans only.
SELECT id AS account_id
FROM accounts
WHERE is_active
AND NOT is_internal
), adoption AS (
SELECT
r.feature_name,
COUNT(DISTINCT r.account_id) AS adopting_accounts
FROM product_usage_rollups r
JOIN eligible_accounts e ON e.account_id = r.account_id
WHERE r.usage_date >= CURRENT_DATE - INTERVAL '28 days'
GROUP BY r.feature_name
)
SELECT
a.feature_name,
a.adopting_accounts,
(SELECT COUNT(*) FROM eligible_accounts) AS eligible_accounts,
ROUND(
100.0 * a.adopting_accounts
/ NULLIF((SELECT COUNT(*) FROM eligible_accounts), 0), 1
) AS adoption_pct
FROM adoption a
ORDER BY adoption_pct DESC;Frustration normalized by traffic, by page and week.
SELECT
page_or_flow,
date_trunc('week', usage_date) AS week,
ROUND(
1000.0 * SUM(rage_clicks) / NULLIF(SUM(sessions), 0), 2
) AS rage_clicks_per_1k_sessions
FROM session_rollups
GROUP BY 1, 2
ORDER BY 1, 2;Trailing 28 days vs. the prior 28 days.
WITH recent AS (
SELECT account_id, SUM(event_count) AS events_28d
FROM product_usage_rollups
WHERE usage_date >= CURRENT_DATE - INTERVAL '28 days'
GROUP BY account_id
), prior AS (
SELECT account_id, SUM(event_count) AS events_prior_28d
FROM product_usage_rollups
WHERE usage_date >= CURRENT_DATE - INTERVAL '56 days'
AND usage_date < CURRENT_DATE - INTERVAL '28 days'
GROUP BY account_id
)
SELECT
p.account_id,
p.events_prior_28d,
COALESCE(r.events_28d, 0) AS events_28d,
ROUND(
100.0 * (COALESCE(r.events_28d, 0) - p.events_prior_28d)
/ NULLIF(p.events_prior_28d, 0), 1
) AS change_pct
FROM prior p
LEFT JOIN recent r USING (account_id)
WHERE p.events_prior_28d > 0
ORDER BY change_pct ASC
LIMIT 20;