Support Triage MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Support Triage MCPList all open support tickets"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Support Triage MCP
An MCP (Model Context Protocol) server that exposes a support-ticket inbox as tools an AI client can use to list, inspect, triage, and update tickets. The dataset here is mocked (styled after a home-loan partner-support inbox: loan status queries, document issues, disbursement delays, KYC, etc.) but the server is written so a real ticket source (Zendesk, email, a helpdesk API) could be swapped in later without changing the tool interface.
Status
Core plumbing is working: list_tickets, get_ticket, and
update_ticket_status. AI-based triage (classify_ticket) is the next
milestone — see Roadmap.
Related MCP server: rebar-mcp
Project structure
support-triage-mcp/
├── server.py # MCP server + tool definitions
├── data/
│ ├── tickets.json # mock ticket dataset
│ └── generate_data.py # regenerates tickets.json
├── tests/
│ └── test_server.py # smoke tests for the tool functions
├── requirements.txt
├── LICENSE
└── README.mdSetup
git clone <your-repo-url>
cd support-triage-mcp
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txtRegenerate the mock dataset any time with:
python data/generate_data.pyRun the test suite:
pip install pytest
pytest tests/ -vRunning the server standalone
python server.pyThis starts the MCP server over stdio, waiting for a client to connect.
Connecting to Claude Desktop
Add this to your Claude Desktop MCP config
(claude_desktop_config.json — Settings → Developer → Edit Config):
{
"mcpServers": {
"support-triage": {
"command": "python",
"args": ["/absolute/path/to/support-triage-mcp/server.py"]
}
}
}Restart Claude Desktop, then try prompts like:
"List all open support tickets"
"Show me ticket T-1021"
"Mark T-1021 as in_progress"
Available tools
Tool | Description |
| List tickets, optionally filtered by status ( |
| Get full details of one ticket by ID. |
| Update a ticket's status. |
Roadmap
classify_ticket(ticket_id)— LLM-based category/priority/sentiment classification + suggested response draftRetrieve similar past tickets as context before classifying (RAG-style)
GitHub Actions CI (lint + pytest on every push)
Swap the mock dataset for a real ticket source
Notes on the MCP SDK version
This project uses mcp v2.x, where the server class was renamed from
FastMCP to MCPServer (mcp.server.mcpserver.MCPServer). The decorator
API (@mcp.tool()) and mcp.run() are unchanged from v1. If you're
following older MCP tutorials that import from mcp.server.fastmcp import FastMCP, either update the import as above or pin mcp<2.0.0.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Build and manage AI-native customer support agents from Claude or any MCP client.
AI-native helpdesk hosted in Germany: tickets, replies, KPIs and knowledge base over MCP.
Related MCP Servers
- AlicenseCqualityCmaintenanceExposes a support-desk application through MCP tools and resources with populate/snapshot/restore hooks for reproducible RL training episodes.8MIT
- AlicenseNot gradedqualityAmaintenanceEnables agents to manage an event-sourced, git-backed ticket store through MCP tools, supporting operations like ticket creation, claiming, and transitions.4Apache 2.0
- FlicenseNot gradedqualityBmaintenanceA lightweight MCP server that enables AI agents to retrieve customer support ticket information from an in-memory datastore via SSE.1-
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to search and retrieve support tickets, add notes, close tickets, and access SLA policies through MCP tools, resources, and prompts over Streamable HTTP.MIT