Freshdesk × Metabase

How to build Freshdesk support dashboards in Metabase

Freshdesk is where your team handles customer tickets across email, portal, chat, and phone.Metabase is where you turn that activity into shared, trustworthy dashboards. This guide covers two complementary paths: a lightweight MCP route for fast, AI-assisted questions, and a durable pipeline route that syncs Freshdesk into a database so you can build dashboards anyone can read.

Heads up: Metabase connects to SQL databases and warehouses — it does not ship a native Freshdesk connector. For dashboards that need history and reliability, you'll sync Freshdesk into a database first (covered below).

How do you connect Freshdesk to Metabase?

Most teams combine these: use the MCP route to explore and triage, and the pipeline route for the dashboards people depend on.

1 · MCP route (AI-assisted)

Live, conversational analysis

Pair a Freshdesk MCP server with the Metabase MCP server so an AI assistant can pull live ticket data and query existing Metabase models on demand.

Best for
  • Ad-hoc questions like "which tickets are overdue on SLA?"
  • Triaging the open queue without building a report
  • Exploring before you model
Trade-offs
  • Freshworks' MCP server is in early access; community servers fill the gap
  • Not a substitute for governed or scheduled reporting
  • No history unless your data already lives in Metabase
2 · Pipeline route (warehouse-backed)

Durable dashboards with history

Sync Freshdesk into a database or warehouse with Airbyte, Fivetran, or the REST API, then point Metabase at it.

Best for
  • SLA, CSAT, and volume dashboards the whole team relies on
  • Trends over quarters and year-over-year comparisons
  • Joining support data with product or billing data
Trade-offs
  • Requires a destination database and a sync to maintain
  • You own the data model and refresh schedule
  • Capture ticket activities for accurate time-in-status

What can you analyze from Freshdesk data in Metabase?

  • Ticket volume — created vs. resolved by day, source, and group
  • First response time — how long customers wait for a reply
  • Resolution time — created to resolved, with median and p90
  • SLA attainment — first-response and resolution targets met
  • Backlog and aging — open work and how long it's been waiting
  • CSAT — satisfaction surveys and response rate over time
  • Agent and group load — workload distribution and resolution speed

Which Freshdesk dashboards should you build in Metabase?

For: Support leads

Support overview

The daily pulse of volume and responsiveness.

  • Tickets created vs. resolved per day (dual line)
  • Median first response time (number + trend)
  • Median resolution time (number + trend)
  • Open backlog by status (bar)
For: Support ops

SLA & response time

Are we keeping our promises?

  • SLA attainment % for first response and resolution (number)
  • Overdue tickets by group (table)
  • Response time p50/p90 by week (line)
  • Aging open tickets by days-open bucket (table)
For: CX leadership

CSAT & quality

Track satisfaction, not just speed.

  • CSAT % by week (line)
  • Survey response rate (number)
  • Reopened tickets by week (line)
  • Volume by ticket type and priority (bar)
For: Team managers

Agent & group performance

Balance workload and spot coaching opportunities.

  • Resolved tickets by agent (bar)
  • Median resolution time by group (bar)
  • Open assigned tickets by agent (table)
  • Volume by source (email, portal, chat) (bar)

How do you use a Freshdesk and Metabase MCP server together?

Pair a Freshdesk MCP server with the Metabase MCP server for live, conversational analysis. The Freshdesk MCP pulls current ticket data; the Metabase MCP queries the models and dashboards you've already built.

Example workflows

  • List tickets overdue on SLA and summarize by group.
  • Pull the open queue from Freshdesk and compare resolution trends against a Metabase model.
  • Triage: "show unassigned urgent tickets created today."

Be honest about the limits

  • MCP is great for live lookups — not for scheduled or audited reporting.
  • It does not create history; trend analysis still needs synced data.
  • Respect Freshdesk API rate limits and the connected agent's permissions.
  • The Metabase MCP server is built in; an admin enables it under Admin → AI → MCP.

How do you set up the Freshdesk and Metabase MCP servers?

On MCP availability: Freshworks offers an MCP integration for Freshdesk in early access (API-key auth), and several community MCP servers wrap the Freshdesk REST API. Verify the current status before you standardize on one.

Freshdesk MCP community

Endpoint
https://<your-account>.freshdesk.com/mcp
Transport
Streamable HTTP (or stdio for community servers)
Auth
Freshdesk API key
Note
Confirm the EAP endpoint or pick a maintained community server.

Metabase MCP built-in

Enable
Admin → AI → MCP
Endpoint
https://<your-metabase>/api/metabase-mcp
Auth
OAuth handled by Metabase
Cursor~/.cursor/mcp.json or .cursor/mcp.json
{
  "mcpServers": {
    "freshdesk": {
      "type": "http",
      "url": "https://<your-account>.freshdesk.com/mcp",
      "headers": { "Authorization": "<YOUR_FRESHDESK_API_KEY>" }
    },
    "metabase": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://your-metabase.example.com/api/metabase-mcp"]
    }
  }
}

Freshdesk authorizes MCP requests with an API key. Swap in a maintained community server's command if your account isn't in the Freshworks EAP yet.

Verify before shipping: confirm the Metabase MCP URL in Admin → AI → MCP (Metabase docs) and the current Freshdesk MCP status in the Freshdesk API docs.

Can you generate a Freshdesk dashboard with AI?

Yes — and this is the fastest way to a strong first draft. Use the prompt below with the Metabase MCP server and any assistant that can inspect your warehouse schema and create Metabase questions. It assumes Freshdesk data is already synced into a database Metabase can read, treats MCP as exploratory, and tells the agent to skip metrics the schema can't support instead of faking them.

Prompt for creating a Freshdesk Support Overview dashboard
Create a polished Metabase dashboard for Freshdesk support analytics using the
available Freshdesk tables in this database.

Goal: Help support leaders understand volume, responsiveness, SLA attainment,
CSAT, and agent workload from Freshdesk data.

First, inspect the schema and identify the available Freshdesk tables. Do not
assume exact table names. Map the available raw tables into these analytical
concepts where possible: Tickets, Conversations (replies and notes), Contacts,
Agents, Groups, Companies, Satisfaction surveys, and SLA fields.

Important:
- Treat MCP data access as exploratory only.
- Build the dashboard from durable database/warehouse tables.
- Use medians (p50) and p90 for response and resolution times, never averages.
- Define "first response" as the first public agent reply, excluding private
  notes and automated messages.
- If ticket activity history is missing, do not calculate reopen rate or
  time-in-status. Use a caveat instead.
- Do not claim Metabase connects natively to Freshdesk unless that is explicitly
  true in this environment.

Dashboard title: Freshdesk Support Overview

Sections:
1. Executive summary (KPI cards): Tickets created last 7 days; Resolved last 7
   days; Open backlog; Median first response time; Median resolution time;
   CSAT % (only if survey data exists).
2. Volume & backlog: Created vs resolved by day; Open by status; Backlog aging;
   Volume by source.
3. SLA & response time: First response and resolution SLA attainment; Overdue by
   group; Response time p50/p90 by week.
4. CSAT & quality: CSAT by week; Survey response rate; Reopened by week (only if
   activities exist); Volume by ticket type and priority.
5. Agent & group: Resolved by agent; Median resolution time by group; Open
   assigned by agent; Volume by source.

Filters: Group, Agent, Source, Ticket type, Priority, Status, Date range.

Before finalizing, create or recommend reusable Metabase models:
modeled_freshdesk_tickets, modeled_freshdesk_conversations,
modeled_freshdesk_contacts, modeled_freshdesk_agents, and
modeled_freshdesk_groups.

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 schema. Keep it practical, dense,
and executive-readable. Avoid vanity metrics.

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

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

Connector options

  • Airbyte(managed ETL) — has a Freshdesk source covering tickets, conversations, contacts, agents, groups, and satisfaction ratings.
  • Fivetran(managed ETL) — offers a Freshdesk connector with a maintained schema and incremental syncs.
  • dlt(code) — write a Python pipeline against the Freshdesk REST API for full control.
  • Freshdesk REST API(raw) — the source of truth; use include=stats to pull response and resolution timestamps.

Notes

  • Land raw tables first, then build clean models on top.
  • Request ticket stats so you get first_responded_at, resolved_at, and closed_at without recomputing.
  • Capture ticket activities if you want accurate reopen rate and time-in-status.

How should you model Freshdesk data in Metabase?

Core tables

TableGrainKey columns
ticketsone row per ticketid, status, priority, source, type, group_id, responder_id, requester_id, created_at, stats_resolved_at
conversationsone row per reply/noteticket_id, incoming, private, user_id, created_at
contactsone row per requesterid, email, company_id
agentsone row per agentid, name, group_ids
groupsone row per groupid, name

Modeling advice

  • Map Freshdesk's numeric status codes (2 open, 3 pending, 4 resolved, 5 closed) to readable labels in a model.
  • Use the ticket stats timestamps for durations rather than recomputing from conversations.
  • Define first response from the first public, incoming-false conversation and exclude private notes.
  • Treat tags as a bridge table so a ticket can carry many tags.
  • Define "resolved" once (status 4 or 5) and reuse it everywhere.

Which Freshdesk metrics should you track in Metabase?

MetricDefinitionNotes
First response timeCreated → first public agent reply.Report median and p90; exclude private notes.
Resolution timeCreated → stats_resolved_at.Decide whether to include pending time.
Ticket volumeCreated vs. resolved in a period.Segment by source and group.
SLA attainmentShare meeting first-response/resolution targets.Use SLA fields or modeled targets per group.
BacklogOpen/pending tickets right now.Pair with aging buckets.
CSATPositive survey responses ÷ rated tickets.Watch the response rate too.

What SQL powers Freshdesk dashboards in Metabase?

These assume the modeled tables above (PostgreSQL dialect, with Freshdesk status codes). Adjust identifiers to match your warehouse.

Tickets created vs. resolved per dayPostgreSQL

The basic volume trend over the last 30 days (status 4/5 = resolved/closed).

SELECT
  date_trunc('day', t.created_at) AS day,
  COUNT(*)                                            AS created,
  COUNT(*) FILTER (WHERE t.status IN (4, 5))          AS resolved
FROM tickets t
WHERE t.created_at >= CURRENT_DATE - INTERVAL '30 days'
GROUP BY 1
ORDER BY 1;
Resolution time by weekPostgreSQL

Median and p90 from created to the stats resolved timestamp.

SELECT
  date_trunc('week', t.created_at) AS week,
  percentile_cont(0.5) WITHIN GROUP (
    ORDER BY EXTRACT(EPOCH FROM (t.stats_resolved_at - t.created_at)) / 3600.0
  ) AS median_resolution_hours,
  percentile_cont(0.9) WITHIN GROUP (
    ORDER BY EXTRACT(EPOCH FROM (t.stats_resolved_at - t.created_at)) / 3600.0
  ) AS p90_resolution_hours
FROM tickets t
WHERE t.stats_resolved_at IS NOT NULL
GROUP BY 1
ORDER BY 1;
First-response SLA by groupPostgreSQL

Share of resolved tickets that did not escalate first response. Adjust to your SLA fields.

SELECT
  g.name             AS group_name,
  COUNT(*)           AS resolved_tickets,
  ROUND(
    100.0 * COUNT(*) FILTER (WHERE NOT t.fr_escalated) / NULLIF(COUNT(*), 0),
    1
  ) AS first_response_sla_pct
FROM tickets t
JOIN groups g ON g.id = t.group_id
WHERE t.status IN (4, 5)
GROUP BY g.name
ORDER BY resolved_tickets DESC;
Backlog agingPostgreSQL

Open tickets bucketed by how long they've been waiting.

SELECT
  CASE
    WHEN CURRENT_DATE - t.created_at::date <= 1  THEN '0-1 days'
    WHEN CURRENT_DATE - t.created_at::date <= 3  THEN '2-3 days'
    WHEN CURRENT_DATE - t.created_at::date <= 7  THEN '4-7 days'
    ELSE '8+ days'
  END                AS age_bucket,
  COUNT(*)           AS open_tickets
FROM tickets t
WHERE t.status NOT IN (4, 5)
GROUP BY 1
ORDER BY MIN(CURRENT_DATE - t.created_at::date);

What are common mistakes when analyzing Freshdesk in Metabase?

Treating MCP answers as governed reporting.→ Use MCP for triage and exploration; build warehouse-backed Metabase dashboards for anything people depend on.
Leaving status as raw numeric codes.→ Map 2/3/4/5 to open/pending/resolved/closed in a model so charts are readable.
Counting private notes as customer replies.→ Restrict first response to public, outbound conversations.
Using averages for response and resolution time.→ Report medians and p90 — these durations are heavily right-skewed.
Recomputing durations when stats already exist.→ Sync ticket stats for response and resolution timestamps.

Related analytics

Related integrations

FAQ

Does Metabase connect natively to Freshdesk?
No. Metabase reads SQL databases and warehouses. Sync Freshdesk into a database first (Airbyte, Fivetran, dlt, or the REST API), then connect Metabase to that database.
Is there an official Freshdesk MCP server?
Freshworks offers an MCP integration for Freshdesk in early access, authenticated with an API key, and several community MCP servers wrap the Freshdesk REST API. Verify the current status before standardizing.
How do I get response and resolution times?
Request the ticket stats (include=stats) when syncing, which gives first_responded_at, resolved_at, and closed_at, then compute medians and p90 from those.