Salesloft × Metabase

How to build Salesloft sales-engagement dashboards in Metabase

Salesloft is where your outbound sales engagement lives — cadences, steps, emails, calls, replies, and booked meetings. Metabase is where you turn that activity into shared dashboards on cadence performance, the outbound funnel, and pipeline impact. Salesloft is a sales-engagement platform rather than a deal-pipeline CRM, so its signals are most powerful joined to your CRM. This guide covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the Salesloft MCP server and loads a CSV into Metabase with the Metabase CLI for quick analysis, and a durable warehouse route that syncs Salesloft 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 Salesloft connector. For dashboards that need history and reliability, you'll sync Salesloft into a database first (covered below).

How do you connect Salesloft to Metabase?

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

1 · MCP + CLI route (AI-assisted)

Live data in, quick analysis out

Pair the Clari + Salesloft announced revenue-intelligence MCP server (to read live forecast and execution data) 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 accounts are behind on cadence steps?"
  • Loading a Salesloft CSV export into Metabase in seconds
  • Spot-checks and one-off analyses without a warehouse
Trade-offs
  • Great for exploration, not governed reporting
  • Setup appears enterprise/demo controlled; confirm availability and scope access
  • CSV uploads are snapshots — refresh or move to the pipeline for history
2 · Warehouse route (durable reporting)

Durable dashboards with history

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

Best for
  • Cadence-performance and reply-rate dashboards the whole team relies on
  • Meetings-booked and funnel trends over quarters
  • Joining engagement data with CRM pipeline and win rate
Trade-offs
  • Requires a destination database and a sync to maintain
  • You own the funnel and reply definitions and the refresh schedule
  • Join cadence activity to CRM opportunities to make it actionable

What can you analyze from Salesloft data in Metabase?

  • Outbound funnel — enrolled → contacted → replied → meeting
  • Cadence performance — reply rate and step completion by cadence
  • Deliverability — bounce and opt-out rates by sender and cadence
  • Meetings booked — by rep, cadence, and segment
  • Pipeline impact — opportunities sourced and engagement vs. win rate
  • Rep activity — emails, calls, and steps completed per rep

Which Salesloft dashboards should you build in Metabase?

For: Sales leaders

Cadence performance

How outbound is landing.

  • Reply rate by cadence (bar)
  • Meetings booked by rep (bar)
  • Active accounts in cadence (number)
  • Step completion rate by cadence (table)
For: Sales ops

Funnel

Where prospects advance and where they stall.

  • Enrolled → contacted → replied → meeting (funnel)
  • Conversion by step (bar)
  • No-response accounts by cadence (table)
  • Cadence completion vs. reply (scatter)
For: Enablement

Deliverability

Whether email is reaching inboxes.

  • Bounce rate by sender (bar)
  • Opt-out rate by cadence (bar)
  • Open rate trend (line)
  • Emails per account before reply (histogram)
For: Revenue leadership

Pipeline impact

Engagement joined to real deals.

  • Opportunities sourced by cadence (bar)
  • Cadence engagement vs. win rate (scatter)
  • Meetings-to-opportunity rate (number)
  • Sourced pipeline value by cadence (bar)

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

Pair the Salesloft MCP server with the Metabase CLI for fast, hands-on analysis. Clari + Salesloft announced a revenue-intelligence MCP server that opens live forecast and execution data to AI clients; the Metabase CLI's upload command loads a CSV into Metabase and creates a ready-to-query table and model.

Example workflow

  • Ask the Salesloft MCP which accounts are behind on cadence steps.
  • Export the cadence or reply 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 Salesloft MCP is great for live lookups — not for scheduled or audited engagement 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 Clari + Salesloft MCP appears enterprise/demo controlled; confirm availability with your account team and scope access.
  • mb upload csv needs an uploads database configured under Admin → Settings → Uploads.

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

Salesloft MCPannounced

Provider
Clari + Salesloft revenue-intelligence MCP
Scope
Live forecast and execution data
Auth
Enterprise/demo controlled; confirm access

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": {
    "salesloft": {
      "url": "https://your-salesloft-mcp-endpoint/mcp"
    }
  }
}
TerminalLoad a Salesloft 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 Salesloft CSV export — creates a table AND a model
mb upload csv --file salesloft-cadences.csv --collection root

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

Swap in the Salesloft MCP endpoint your account team provides. 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 Salesloft MCP availability in the Clari + Salesloft announcement.

Can you generate a Salesloft dashboard with AI?

Yes. Use the prompt below with any assistant that can run the Salesloft MCP server and the Metabase CLI. It works end to end: if Salesloft tables already exist in Metabase it analyzes those; otherwise it pulls the data over the Salesloft 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 a Salesloft Sales Engagement dashboard
Create a polished Metabase dashboard for Salesloft sales-engagement analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.

Goal: Help sales and enablement leaders understand cadence performance, the
outbound funnel, deliverability, and pipeline impact from Salesloft data — joined
to CRM pipeline where possible.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for Salesloft tables and
  models). If durable Salesloft 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 Salesloft MCP server (the announced
  Clari + Salesloft revenue-intelligence server; scope access accordingly): people,
  cadences, cadence memberships, activities, and meetings. 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:
Salesloft CSV exports are usually flat and pre-aggregated (one row per cadence or
rep, with columns like contacted, reply rate, step completion, and meetings).
Warehouse tables are raw and activity-grained (memberships, activities, and
meetings you join yourself). Inspect the actual tables and column names first; do
not assume exact names or that an activity-level table exists.

Important:
- Build on whatever data is present; don't claim Metabase connects natively to
  Salesloft — it reads a database or CLI-uploaded tables.
- Engagement signals are most useful joined to CRM opportunities — align on a
  deal key so cadence activity maps to real pipeline, when raw counts allow it.
- Define "reply rate" and "meeting" explicitly and hold definitions fixed.
- 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: Salesloft Sales Engagement Overview

Sections:
1. Executive summary (KPI cards): Reply rate; Meetings booked; Active accounts in
   cadence; Step completion rate; Bounce rate; Opportunities sourced.
2. Cadence performance: Reply rate by cadence; meetings by rep; step completion.
3. Funnel: Enrolled → contacted → replied → meeting; conversion by step.
4. Deliverability: Bounce rate; opt-out rate; open-rate trend.
5. Pipeline impact: Opportunities sourced; engagement vs. win rate;
   meetings-to-opportunity rate.

Filters: Rep, Cadence, Segment, Date range.

Reuse the models Metabase auto-created from uploaded CSVs, or (for a warehouse)
create reusable models: modeled_salesloft_people, modeled_salesloft_cadences,
modeled_salesloft_memberships, modeled_salesloft_activities, and
modeled_salesloft_meetings.

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

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

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

Connector options

  • Salesloft API (raw) — pull people, accounts, cadences, cadence memberships, activities, and meetings.
  • Managed ETL — several connectors offer Salesloft sources that land tables in your warehouse on a schedule.
  • dlt (code) — write a Python pipeline against the Salesloft API for incremental loads.

Notes

  • Land raw tables first, then build clean models on top.
  • Align cadence memberships to your CRM opportunity key so engagement maps to real pipeline.
  • Capture activity and reply timestamps for accurate funnel timing.
  • Define reply and meeting once and reuse them across charts.

How should you model Salesloft data in Metabase?

Core tables

TableGrainKey columns
peopleone row per prospectid, account_id, crm_contact_id, email, owner_id
cadencesone row per cadenceid, name, owner_id
membershipsone row per person/cadenceperson_id, cadence_id, first_contacted_at, replied_at, current_step
activitiesone row per activityid, person_id, user_id, type, status, sent_at
meetingsone row per meetingid, person_id, user_id, booked_at, status

Modeling advice

  • Join people to CRM contacts and memberships to opportunities so engagement maps to pipeline and win rate.
  • Define reply and meeting once and reuse them across charts.
  • Roll activities up by rep and cadence for performance, and keep them per activity for drill-down.
  • Read deliverability (bounce, opt-out) as list-hygiene signals.

Which Salesloft metrics should you track in Metabase?

MetricDefinitionNotes
Reply rateReplied ÷ contacted.Segment by cadence; hold the reply definition fixed.
Meetings bookedDistinct people with a booked meeting.By rep, cadence, and segment.
Step completion rateSteps completed ÷ steps scheduled.A cadence-execution signal.
Bounce rateBounced ÷ sent.A list-hygiene signal.
Opt-out rateUnsubscribed ÷ contacted.Watch for aggressive cadences.
Opportunities sourcedOpportunities linked to cadence engagement.Requires a CRM join.

What SQL powers Salesloft dashboards in Metabase?

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

Reply rate by cadencePostgreSQL

Replied as a share of contacted, over the last 90 days.

-- Reply rate by cadence over the last 90 days
SELECT
  c.name AS cadence,
  COUNT(*)                                              AS contacted,
  COUNT(*) FILTER (WHERE m.replied_at IS NOT NULL)      AS replied,
  ROUND(100.0 * COUNT(*) FILTER (WHERE m.replied_at IS NOT NULL)
    / NULLIF(COUNT(*), 0), 2)                           AS reply_rate_pct
FROM modeled_salesloft_memberships m
JOIN modeled_salesloft_cadences c ON c.id = m.cadence_id
WHERE m.first_contacted_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY c.name
ORDER BY reply_rate_pct DESC;
Meetings booked by repPostgreSQL

Distinct people 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.person_id) AS meetings_booked
FROM modeled_salesloft_meetings mt
JOIN modeled_salesloft_users u ON u.id = mt.user_id
WHERE mt.booked_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY u.name
ORDER BY meetings_booked DESC;
Bounce rate by senderPostgreSQL

Bounced emails as a share of sent, a list-hygiene signal.

-- Bounce rate by sender
SELECT
  u.name AS sender,
  COUNT(*)                                              AS sent,
  COUNT(*) FILTER (WHERE a.status = 'bounced')          AS bounced,
  ROUND(100.0 * COUNT(*) FILTER (WHERE a.status = 'bounced')
    / NULLIF(COUNT(*), 0), 2)                           AS bounce_rate_pct
FROM modeled_salesloft_activities a
JOIN modeled_salesloft_users u ON u.id = a.user_id
WHERE a.type = 'email' AND a.sent_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY u.name
ORDER BY bounce_rate_pct DESC;

What are common mistakes when analyzing Salesloft in Metabase?

Analyzing engagement in isolation from the CRM.→ Join cadence memberships to CRM opportunities — reply rate and meetings only matter against real pipeline.
Leaving 'reply' and 'meeting' undefined.→ Pin down what counts as a reply and a booked meeting or cadences aren't comparable.
Trending deliverability without history.→ If bounce and opt-out aren't captured over time, show a snapshot with a caveat.
Optimizing for volume over quality.→ More steps and emails isn't better on its own; correlate cadence engagement with win rate.
Ignoring opt-out spikes.→ A rising opt-out rate is a signal to slow down or rework a cadence, not push harder.

Related analytics

Related metrics

Related integrations

FAQ

Does Metabase connect natively to Salesloft?
No. Metabase reads databases and warehouses. Sync Salesloft into a database first (the Salesloft API, a managed connector, or dlt), then connect Metabase to that database.
Does Salesloft have an official MCP server?
Clari + Salesloft announced a revenue-intelligence MCP server that opens live forecast and execution data to AI clients. Availability appears enterprise/demo controlled — confirm with your account team. Use MCP for live lookups, not governed reporting.
How do I quickly load Salesloft data without a warehouse?
Export a CSV from Salesloft 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.
Salesloft isn't a pipeline CRM — what should I measure?
Focus on cadence performance (reply rate, step completion), the outbound funnel, deliverability (bounce, opt-out), and meetings booked. Join cadence memberships to your CRM so those signals map to real pipeline and win rate.