Dispatch Tickets for Claude
Our official connector lets Claude read, triage, update, and reply to your support tickets — directly in the conversation, over the Model Context Protocol.
What it is
The Model Context Protocol (MCP) is an open standard for connecting AI assistants to external tools and data. The Dispatch Tickets MCP connector is a hosted server that exposes your ticketing workspace to Claude as a set of safe, well-described tools.
Once connected, you can ask Claude to work your support queue in plain language. Claude decides which tools to call, runs them against your workspace, and shows you the results — no dashboard-hopping, no copy-paste. Because Dispatch Tickets is API-first and multi-tenant, one connector serves every brand your API key can access.
Server URL
https://mcp.dispatchtickets.com/mcpWhat it can do
The connector ships with ten tools, split between reading your tickets and taking action on them.
Read your tickets
list_brandsList the brands (workspaces) your key can access.
list_ticketsList tickets, filtered by status, priority, assignee, or date.
search_ticketsFull-text search across a brand's tickets.
get_ticketFetch a single ticket and its details.
list_commentsRead a ticket's comments — public replies and internal notes.
get_ticket_statsGet ticket counts per status for a brand.
Take action
create_ticketOpen a new ticket in a brand.
update_ticketChange status, priority, assignee, category, tags, or fields.
add_internal_noteAdd a private note for your team. Sends nothing to the customer.
reply_to_customerPost a public reply that emails the customer.
One tool sends email. reply_to_customer posts a public reply that is emailed to the customer. Everything else is either read-only or internal to your team — add_internal_note sends nothing. Claude asks before it acts, so you stay in control of anything customer-facing.
Example prompts
Once connected, try asking Claude things like:
- "Show me all open, high-priority tickets in the Acme brand."
- "What's the ticket backlog look like this week? Break it down by status."
- "Find the ticket where a customer reported a failed checkout and summarize it."
- "Draft a reply to ticket 1042 apologizing for the delay and offering a refund — but don't send it yet."
- "Add an internal note to that ticket flagging it for the billing team."
- "Create a ticket for a bug a customer just emailed me about."
How to get it
You'll need a Dispatch Tickets account. If you don't have one yet, it's free to start — create an account and add a brand first.
Option 1 — Connect from Claude (recommended)
The easiest path uses OAuth, so you never handle an API key.
- In Claude, open Settings → Connectors.
- Find Dispatch Tickets in the connector directory, or add it as a custom connector using the server URL above.
- Click Connect and sign in with your Dispatch Tickets account.
- Authorize the workspace you want Claude to access. That's it — the tools appear in your next conversation.
Option 2 — Custom connector with an API key
Prefer a static key (for Claude Code or a self-managed setup)? Grab an sk_live_… key from API Keys in your Dispatch Tickets dashboard, then add the connector with an Authorization header.
Claude Desktop / Claude.ai: Settings → Connectors → Add custom connector. Use the server URL above and add a header Authorization: Bearer sk_live_….
Claude Code:
claude mcp add --transport http dispatch \
https://mcp.dispatchtickets.com/mcp \
--header "Authorization: Bearer sk_live_..."Then confirm the tools are wired up:
claude mcp listSecurity & permissions
- Scoped to your access. The connector can only touch the brands and tickets your account or API key already has access to — nothing more.
- Nothing sends silently. The only customer-facing action is reply_to_customer, and Claude surfaces it for your confirmation. Internal notes and all reads never email anyone.
- Per-request auth. One hosted server serves many tenants; your credentials arrive per request and are never shared across workspaces.
- Revoke anytime. Disconnect the connector in Claude, or revoke the API key in your dashboard, and access stops immediately.
Other AI hosts
The same MCP server works beyond Claude. Point any MCP-capable host at the server URL:
- ChatGPT / OpenAI — pass the server URL and header as an MCP tool in the Responses API.
- n8n — use the MCP Client node.
- Make — add it as an MCP module.
See the integrations overview for the full list.