Outreach × Metabase

How to build Outreach sales-engagement dashboards in Metabase

Outreach is where your sequences, prospects, and rep activity live. Metabase is where you turn that activity into shared, trustworthy sales-engagement dashboards. Outreach is a sales-engagement platform rather than a deal-pipeline CRM, so this guide focuses on the outbound funnel, sequence performance, and deliverability. It covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the Outreach MCP server and loads a CSV into Metabase with the Metabase CLI for quick analysis, and a durable warehouse route that syncs Outreach 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 Outreach connector. For dashboards that need history and reliability, you'll sync Outreach into a database first (covered below).

How do you connect Outreach to Metabase?

Most teams combine both routes: use the Outreach MCP server and Metabase CLI route to pull live data and stand up a quick analysis, and the warehouse route for the outbound dashboards the team depends on.

1 · MCP + CLI route (AI-assisted)

Live data in, quick analysis out

Pair Outreach's MCP server (to read live sequences, prospects, and mailing activity) 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 sequences are booking meetings?"
  • Loading an Outreach CSV export into Metabase in seconds
  • Spot-checks and one-off analyses without a warehouse
Trade-offs
  • Great for exploration, not governed reporting
  • The Outreach MCP can take actions — scope access so analysis stays read-oriented
  • CSV uploads are snapshots — refresh or move to the pipeline for history
2 · Warehouse route (durable reporting)

Durable dashboards with history

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

Best for
  • Sequence, reply-rate, and meeting dashboards the whole team relies on
  • Deliverability and rep-activity trends over time
  • Joining outbound activity with pipeline and revenue from your CRM
Trade-offs
  • Requires a destination database and a sync to maintain
  • You own the outcome definitions and the refresh schedule
  • Capture mailing events over time so rates don't drift

What can you analyze from Outreach data in Metabase?

  • Outbound funnel — enrolled → contacted → replied → meeting → opportunity
  • Sequence performance — open, reply, and positive-reply rate by sequence and step
  • Meetings booked — by rep, sequence, and segment
  • Deliverability — bounce and opt-out rate by mailbox and sequence
  • Rep activity — emails, calls, and tasks by rep and account
  • Sourced pipeline — opportunities created from sequences

Which Outreach dashboards should you build in Metabase?

For: Sales leaders

Outbound funnel

From enrolled to booked.

  • Prospects enrolled by week (line)
  • Funnel: enrolled → contacted → replied → meeting (funnel)
  • Meetings booked by rep (bar)
  • Opportunities created from sequences (number)
For: SDR managers

Sequence performance

Which sequences and steps work.

  • Open and reply rate by sequence (bar)
  • Reply rate by step number (line)
  • Positive-reply rate by sequence (bar)
  • Best send day and time (heatmap)
For: Deliverability

Email health

Whether mail is landing.

  • Bounce rate by mailbox (bar)
  • Opt-out rate by sequence (number)
  • Delivered vs. sent by week (line)
  • Mailboxes at risk (table)
For: Managers

Activity

Effort and coverage across the team.

  • Emails and calls by rep (bar)
  • Tasks completed vs. due (number)
  • Accounts touched this week (number)
  • Response time to replies (line)

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

Pair the Outreach MCP server with the Metabase CLI for fast, hands-on analysis. Outreach's MCP server extends its insights and actions into external AI tools, reading live sequence, prospect, and mailing activity; the Metabase CLI's upload command loads a CSV into Metabase and creates a ready-to-query table and model. Scope the connection so analysis stays read-oriented.

Example workflow

  • Ask the Outreach MCP which sequences are booking meetings this month.
  • Export the sequence or prospect activity you want to keep as a CSV.
  • 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

  • The Outreach MCP is great for live lookups — not for scheduled or audited outbound reporting.
  • A CSV upload is a point-in-time snapshot; refresh it with mb upload replace or move to the pipeline for real history.
  • The Outreach MCP can take actions, not just read — scope its access so analysis can't trigger writes.
  • mb upload csv needs an uploads database configured under Admin → Settings → Uploads.

How do you set up the Outreach MCP server and the Metabase CLI?

Outreach MCPofficial

Type
Outreach MCP Server (insights + actions)
Endpoint
Provided by Outreach; confirm availability
Auth
OAuth against your Outreach org
Note
May be in controlled rollout

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)
Cursor~/.cursor/mcp.json or .cursor/mcp.json
{
  "mcpServers": {
    "outreach": {
      "url": "https://your-outreach-mcp-endpoint/mcp"
    }
  }
}
TerminalLoad an Outreach 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 an Outreach CSV export — creates a table AND a model
mb upload csv --file outreach-sequences.csv --collection root

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

Swap in the Outreach MCP endpoint once you've confirmed access. 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 Outreach MCP availability on Outreach's MCP page.

Can you generate an Outreach dashboard with AI?

Yes. Use the prompt below with any assistant that can run the Outreach MCP server and the Metabase CLI. It works end to end: if Outreach tables already exist in Metabase it analyzes those; otherwise it pulls the data over the Outreach MCP, loads it with mb upload csv, then builds the dashboard — and tells the agent to skip metrics the data can't support instead of faking them.

Prompt for creating an Outreach Sales Engagement dashboard
Create a polished Metabase dashboard for Outreach sales-engagement analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.

Goal: Help sales leaders understand the outbound funnel, sequence performance,
email deliverability, and rep activity from Outreach data.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for Outreach tables and
  models). If durable Outreach 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 Outreach MCP server (scope access so
  analysis stays read-oriented): prospects, sequences, mailing activity, calls,
  tasks, and opportunities. 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:
Outreach CSV exports are usually flat and pre-aggregated (one row per sequence or
prospect, with columns like delivered, open rate, reply rate, and meetings).
Warehouse tables are raw and event-grained (a mailings table with sent, delivered,
opened, replied, bounced, opted-out events). Inspect the actual tables and column
names first; do not assume exact names or that an event-level table exists.

Important:
- Build on whatever data is present; don't claim Metabase connects natively to
  Outreach — it reads a database or CLI-uploaded tables.
- If the data already provides rates, chart them directly; only recompute open and
  reply rates over the delivered (not sent) base when raw counts are available, and
  track bounce rate separately.
- Distinguish reply rate from positive-reply rate, and count a "meeting booked"
  from a consistent signal — state which one.
- Report rates with denominators visible; small sequences are noisy.
- Only build a card if its underlying column/metric exists in the data.
- 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: Outreach Sales Engagement Overview

Sections:
1. Executive summary (KPI cards): Prospects enrolled; Reply rate; Meetings booked;
   Bounce rate; Opt-out rate; Opportunities created.
2. Funnel: Enrolled → contacted → replied → meeting; opportunities created.
3. Sequences: Open and reply rate by sequence; reply rate by step; positive-reply
   rate.
4. Deliverability: Bounce rate by mailbox; opt-out rate; delivered vs. sent.
5. Activity: Emails and calls by rep; tasks completed; accounts touched.

Filters: Sequence, Rep, Mailbox, Date range.

Reuse the models Metabase auto-created from uploaded CSVs, or (for a warehouse)
create reusable models: modeled_outreach_prospects, modeled_outreach_sequences,
modeled_outreach_mailings, modeled_outreach_calls, and
modeled_outreach_opportunities.

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
Outreach's own analytics. Keep it practical, dense, and executive-readable.

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

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

Connector options

  • Outreach API (raw) — pull prospects, accounts, sequences, sequence states, mailings, calls, tasks, and opportunities; capture mailing events incrementally.
  • dlt (code) — write a Python pipeline against the Outreach API for incremental loads.
  • Managed ETL (Airbyte / Fivetran) — check the connector catalogs for an Outreach source; where one exists it can land the core objects on a schedule.

Notes

  • Land raw tables first, then build clean models on top.
  • Capture mailing events over time (sent/delivered/opened/replied/bounced/opted-out) so rates don't drift.
  • Keep a stable meeting-booked signal for funnel comparability.
  • Join to your CRM to connect sequences to pipeline and revenue.

How should you model Outreach data in Metabase?

Core tables

TableGrainKey columns
prospectsone row per prospectid, account_id, owner_id, enrolled_at
sequencesone row per sequenceid, name, status
mailingsone row per mailingid, prospect_id, sequence_id, step_number, mailbox, status, sent_at, opened_at, replied_at
meetingsone row per booked meetingid, prospect_id, owner_id, booked_at
opportunitiesone row per opportunityid, prospect_id, amount, created_at

Modeling advice

  • Build modeled_outreach_mailings with clean status flags so open, reply, and bounce rates are unambiguous.
  • Define the funnel stages once and reuse them everywhere.
  • Distinguish reply rate from positive-reply rate.
  • Join to CRM opportunities to attribute sourced pipeline to sequences.

Which Outreach metrics should you track in Metabase?

MetricDefinitionNotes
Reply rateReplies ÷ delivered mailings.See reply rate.
Meetings bookedDistinct prospects with a booked meeting.See meetings booked.
Bounce rateBounced ÷ sent mailings.See email bounce rate.
Opt-out rateOpt-outs ÷ delivered mailings.A list-health guardrail.
Funnel conversionRate between adjacent funnel stages.Show denominators; small cohorts are noisy.
Opportunities sourcedOpportunities created from sequences.Join to CRM; the outcome that matters.

What SQL powers Outreach dashboards in Metabase?

These assume the modeled tables above (PostgreSQL dialect). Adjust identifiers to match your warehouse.

Sequence open and reply ratePostgreSQL

Both based on delivered mailings, so bounces don't distort them.

-- Open and reply rate by sequence (delivered as the base)
SELECT
  s.name AS sequence,
  COUNT(*) FILTER (WHERE m.status <> 'bounced')            AS delivered,
  ROUND(100.0 * COUNT(*) FILTER (WHERE m.opened_at IS NOT NULL)
    / NULLIF(COUNT(*) FILTER (WHERE m.status <> 'bounced'), 0), 1) AS open_rate_pct,
  ROUND(100.0 * COUNT(*) FILTER (WHERE m.replied_at IS NOT NULL)
    / NULLIF(COUNT(*) FILTER (WHERE m.status <> 'bounced'), 0), 1) AS reply_rate_pct
FROM modeled_outreach_mailings m
JOIN modeled_outreach_sequences s ON s.id = m.sequence_id
WHERE m.sent_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY s.name
ORDER BY delivered DESC;
Meetings booked by repPostgreSQL

Distinct prospects with a booked meeting over the last 90 days.

-- Meetings booked by rep over the last 90 days
SELECT
  u.name AS rep,
  COUNT(DISTINCT mt.prospect_id) AS meetings_booked
FROM modeled_outreach_meetings mt
JOIN modeled_outreach_users u ON u.id = mt.owner_id
WHERE mt.booked_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY u.name
ORDER BY meetings_booked DESC;
Bounce rate by mailboxPostgreSQL

A deliverability guardrail; watch mailboxes creeping up.

-- Bounce rate by mailbox
SELECT
  m.mailbox,
  COUNT(*)                                              AS sent,
  COUNT(*) FILTER (WHERE m.status = 'bounced')          AS bounced,
  ROUND(100.0 * COUNT(*) FILTER (WHERE m.status = 'bounced')
    / NULLIF(COUNT(*), 0), 2)                           AS bounce_rate_pct
FROM modeled_outreach_mailings m
WHERE m.sent_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY m.mailbox
ORDER BY bounce_rate_pct DESC;

What are common mistakes when analyzing Outreach in Metabase?

Basing open and reply rates on sent, not delivered.→ Bounces never reach a person — divide by delivered mailings and track bounce rate separately.
Conflating reply rate with positive-reply rate.→ An out-of-office is a reply but not interest; separate positive replies.
Defining 'meeting booked' inconsistently.→ Pick one signal and use it everywhere so funnel conversion is comparable.
Ignoring deliverability guardrails.→ Rising bounce and opt-out rates hurt every sequence; keep them on the dashboard.
Stopping at activity, not outcomes.→ Emails sent is effort, not results; join to CRM opportunities to show sourced pipeline.

Related analytics

Related metrics

Related integrations

FAQ

Does Metabase connect natively to Outreach?
No. Metabase reads databases and warehouses. Sync Outreach into a database first (the Outreach API, dlt, or a managed connector), then connect Metabase to that database.
Does Outreach have an official MCP server?
Outreach describes an MCP Server that extends its insights and actions into external AI tools such as Claude, ChatGPT, and Copilot. A public self-serve endpoint may be gated or in rollout — confirm availability with Outreach. Use MCP for live lookups, not governed reporting.
How do I quickly load Outreach data without a warehouse?
Export a CSV from Outreach 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.
Outreach isn't a pipeline CRM — what should I measure?
Focus on the outbound funnel (enrolled → contacted → replied → meeting), sequence performance (open, reply, positive-reply), deliverability (bounce, opt-out), and sourced pipeline by joining to your CRM's opportunities.