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.
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.
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.
- Ad-hoc questions like "which tickets are overdue on SLA?"
- Triaging the open queue without building a report
- Exploring before you model
- 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
Durable dashboards with history
Sync Freshdesk into a database or warehouse with Airbyte, Fivetran, or the REST API, then point Metabase at it.
- 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
- 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?
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)
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)
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)
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?
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
{
"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.
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.
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=statsto pull response and resolution timestamps.
Notes
- Land raw tables first, then build clean models on top.
- Request ticket
statsso you getfirst_responded_at,resolved_at, andclosed_atwithout recomputing. - Capture ticket activities if you want accurate reopen rate and time-in-status.
How should you model Freshdesk data in Metabase?
Core tables
| Table | Grain | Key columns |
|---|---|---|
tickets | one row per ticket | id, status, priority, source, type, group_id, responder_id, requester_id, created_at, stats_resolved_at |
conversations | one row per reply/note | ticket_id, incoming, private, user_id, created_at |
contacts | one row per requester | id, email, company_id |
agents | one row per agent | id, name, group_ids |
groups | one row per group | id, name |
Modeling advice
- Map Freshdesk's numeric
statuscodes (2 open, 3 pending, 4 resolved, 5 closed) to readable labels in a model. - Use the ticket
statstimestamps 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?
| Metric | Definition | Notes |
|---|---|---|
| First response time | Created → first public agent reply. | Report median and p90; exclude private notes. |
| Resolution time | Created → stats_resolved_at. | Decide whether to include pending time. |
| Ticket volume | Created vs. resolved in a period. | Segment by source and group. |
| SLA attainment | Share meeting first-response/resolution targets. | Use SLA fields or modeled targets per group. |
| Backlog | Open/pending tickets right now. | Pair with aging buckets. |
| CSAT | Positive 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.
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;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;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;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?
stats for response and resolution timestamps.