Mixmax × Metabase

How to build Mixmax sales-engagement dashboards in Metabase

Mixmax is where your Gmail sales engagement lives — sequences, opens, clicks, replies, and scheduled meetings. Metabase is where you turn that activity into shared, trustworthy engagement dashboards. Mixmax is a sales-engagement tool 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 Mixmax MCP server and loads a CSV into Metabase with the Metabase CLI for quick analysis, and a durable warehouse route that syncs Mixmax 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 Mixmax connector. For dashboards that need history and reliability, you'll sync Mixmax into a database first (covered below).

How do you connect Mixmax to Metabase?

Most teams combine both routes: use the Mixmax 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 Mixmax's managed MCP server (Pipedream, to read live sequences, recipients, and message 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 sequence has the best reply rate?"
  • Loading a Mixmax CSV export into Metabase in seconds
  • Spot-checks and one-off analyses without a warehouse
Trade-offs
  • Great for exploration, not governed reporting
  • The managed connector acts with the connected account's Mixmax permissions — scope it tightly
  • CSV uploads are snapshots — refresh or move to the pipeline for history
2 · Warehouse route (durable reporting)

Durable dashboards with history

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

Best for
  • Sequence, reply-rate, and meeting dashboards the whole team relies on
  • Engagement and deliverability trends over time
  • Joining Gmail outreach 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 message events over time so rates don't drift

What can you analyze from Mixmax data in Metabase?

  • Outbound funnel — enrolled → opened → replied → meeting
  • Sequence performance — open, click, and reply rate by sequence and stage
  • Meetings booked — scheduled through Mixmax, by sender
  • Deliverability — bounce and unsubscribe rate by sender and sequence
  • Sender activity — messages sent and recipients touched
  • Engagement timing — best send day and time

Which Mixmax dashboards should you build in Metabase?

For: Sales leaders

Outbound funnel

From enrolled to booked.

  • Recipients enrolled by week (line)
  • Funnel: enrolled → opened → replied → meeting (funnel)
  • Meetings booked by sender (bar)
  • Reply rate trend (line)
For: SDR managers

Sequence performance

Which sequences and stages work.

  • Open, click, and reply rate by sequence (bar)
  • Reply rate by stage (line)
  • Best send day and time (heatmap)
  • Bounce rate by sequence (number)
For: Deliverability

Email health

Whether mail is landing.

  • Bounce rate by sender (bar)
  • Delivered vs. sent by week (line)
  • Unsubscribe rate by sequence (number)
  • Senders at risk (table)
For: Managers

Activity

Effort and coverage across the team.

  • Messages sent by sender (bar)
  • Recipients touched this week (number)
  • Meetings scheduled via Mixmax (number)
  • Response time to replies (line)

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

Pair the Mixmax MCP server with the Metabase CLI for fast, hands-on analysis. Mixmax connects through a managed MCP server (Pipedream) that reads live sequence, recipient, and message data; the Metabase CLI's upload command loads a CSV into Metabase and creates a ready-to-query table and model. Because a third party brokers access, scope the connection tightly.

Example workflow

  • Ask the Mixmax MCP which sequence has the best reply rate this month.
  • Export the sequence or recipient engagement 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 Mixmax 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 managed connector acts with the permissions of the connected Mixmax account — scope it tightly.
  • mb upload csv needs an uploads database configured under Admin → Settings → Uploads.

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

Mixmax MCPmanaged

Provider
Pipedream (managed connector)
Endpoint
https://mcp.pipedream.net/v2
Auth
Connect your Mixmax account in Pipedream
Note
No official first-party Mixmax MCP server yet

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": {
    "mixmax": {
      "url": "https://mcp.pipedream.net/v2"
    }
  }
}
TerminalLoad a Mixmax 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 Mixmax CSV export — creates a table AND a model
mb upload csv --file mixmax-sequences.csv --collection root

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

Mixmax doesn't publish a first-party MCP server, so the practical path is a managed connector: connect your account in Pipedream, then use its static MCP URL. 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 Mixmax connector setup in Pipedream's Mixmax MCP page.

Can you generate a Mixmax dashboard with AI?

Yes. Use the prompt below with any assistant that can run the Mixmax MCP server and the Metabase CLI. It works end to end: if Mixmax tables already exist in Metabase it analyzes those; otherwise it pulls the data over the Mixmax 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 Mixmax Sales Engagement dashboard
Create a polished Metabase dashboard for Mixmax 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 sender activity from Mixmax data.

Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for Mixmax tables and
  models). If durable Mixmax 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 Mixmax MCP server (the managed Pipedream
  connector, scoped tightly): sequences, recipients, message events, 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:
Mixmax CSV exports are usually flat and pre-aggregated (one row per sequence or
recipient, with columns like delivered, open rate, reply rate, and meetings).
Warehouse tables are raw and event-grained (a messages table with sent, delivered,
opened, clicked, replied, bounced, unsubscribed 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
  Mixmax — it reads a database or CLI-uploaded tables.
- If the data already provides rates, chart them directly; only recompute open,
  click, and reply rates over the delivered (not sent) base when raw counts are
  available, and track bounce rate separately.
- Count a "meeting booked" from a consistent signal (Mixmax scheduling event) and
  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: Mixmax Sales Engagement Overview

Sections:
1. Executive summary (KPI cards): Recipients enrolled; Reply rate; Meetings booked;
   Bounce rate; Unsubscribe rate; Open rate.
2. Funnel: Enrolled → opened → replied → meeting.
3. Sequences: Open, click, and reply rate by sequence; reply rate by stage.
4. Deliverability: Bounce rate by sender; delivered vs. sent; unsubscribe rate.
5. Activity: Messages sent by sender; recipients touched; meetings scheduled.

Filters: Sequence, Sender, Date range.

Reuse the models Metabase auto-created from uploaded CSVs, or (for a warehouse)
create reusable models: modeled_mixmax_sequences, modeled_mixmax_recipients,
modeled_mixmax_messages, and modeled_mixmax_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
Mixmax's own analytics. Keep it practical, dense, and executive-readable.

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

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

Connector options

  • Mixmax API (raw) — pull sequences, recipients, message events, and meetings; capture events incrementally.
  • dlt (code) — write a Python pipeline against the Mixmax API for incremental loads.
  • Webhooks — stream message and meeting events so you don't lose engagement between syncs.

Notes

  • Land raw tables first, then build clean models on top.
  • Capture message events over time (sent/delivered/opened/clicked/replied/bounced) 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 Mixmax data in Metabase?

Core tables

TableGrainKey columns
sequencesone row per sequenceid, name, status
recipientsone row per enrollmentid, sequence_id, contact_email, enrolled_at
messagesone row per messageid, recipient_id, sequence_id, stage, sender, status, sent_at, opened_at, replied_at
meetingsone row per booked meetingid, recipient_id, sender, booked_at

Modeling advice

  • Build modeled_mixmax_messages with clean status flags so open, click, reply, and bounce rates are unambiguous.
  • Define the funnel stages once and reuse them everywhere.
  • Roll messages up per sequence, stage, and sender for comparison.
  • Join to your CRM to attribute sourced pipeline to sequences.

Which Mixmax metrics should you track in Metabase?

MetricDefinitionNotes
Reply rateReplies ÷ delivered messages.See reply rate.
Meetings bookedDistinct recipients with a booked meeting.See meetings booked.
Bounce rateBounced ÷ sent messages.See email bounce rate.
Open rateOpened ÷ delivered messages.Read with reply rate, not alone.
Unsubscribe rateUnsubscribes ÷ delivered messages.A list-health guardrail.
Funnel conversionRate between adjacent funnel stages.Show denominators; small cohorts are noisy.

What SQL powers Mixmax 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 messages, 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_mixmax_messages m
JOIN modeled_mixmax_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 senderPostgreSQL

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

-- Meetings booked by sender over the last 90 days
SELECT
  mt.sender AS sender,
  COUNT(DISTINCT mt.recipient_id) AS meetings_booked
FROM modeled_mixmax_meetings mt
WHERE mt.booked_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY mt.sender
ORDER BY meetings_booked DESC;
Bounce rate by senderPostgreSQL

A deliverability guardrail; watch senders creeping up.

-- Bounce rate by sender
SELECT
  m.sender,
  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_mixmax_messages m
WHERE m.sent_at >= CURRENT_DATE - INTERVAL '90 days'
GROUP BY m.sender
ORDER BY bounce_rate_pct DESC;

What are common mistakes when analyzing Mixmax in Metabase?

Basing open and reply rates on sent, not delivered.→ Bounces never reach a person — divide by delivered messages and track bounce rate separately.
Over-trusting open rate.→ Image-proxy prefetching inflates opens; weight reply rate and meetings more heavily.
Defining 'meeting booked' inconsistently.→ Pick one signal (Mixmax scheduling event) and use it everywhere.
Ignoring deliverability guardrails.→ Rising bounce and unsubscribe rates hurt every sequence; keep them on the dashboard.
Stopping at activity, not outcomes.→ Messages 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 Mixmax?
No. Metabase reads databases and warehouses. Sync Mixmax into a database first (the Mixmax API, dlt, or webhooks), then connect Metabase to that database.
Is there an official Mixmax MCP server?
Not a first-party one. The practical path is a managed connector such as Pipedream: connect your account, then use its static MCP URL (https://mcp.pipedream.net/v2). Use MCP for live lookups, not governed reporting.
How do I quickly load Mixmax data without a warehouse?
Export a CSV from Mixmax 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.
Should I trust open rate from Mixmax?
Open rate is directional at best — image-proxy prefetching (e.g. Apple Mail Privacy Protection) inflates it. Base open rate on delivered messages and weight reply rate and meetings booked more heavily.