CaseMargin MCP Server
OfficialClick on "Install 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., "@CaseMargin MCP ServerIs this ticket ready to escalate to L2?"
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.
CaseMargin MCP Server
CaseMargin MCP server exposes support case reasoning tools — generate structured case briefs and check escalation readiness from any MCP-compatible AI client (Claude Desktop, Claude Code, Cursor, and others). It sits above helpdesk data layers: it doesn't read tickets from Zendesk or any ticketing system — you pass ticket content in, it returns structured analysis powered by the same AI that runs casemargin.com.
Tools
generate_case_brief
Generate a structured case brief from a support ticket thread. Returns an assessment, what has been tried, current status, and recommended next step.
Input: ticket_content (string) — the full ticket thread: messages, internal notes, whatever you paste or pipe in. 10–50,000 characters.
Output (structured JSON):
{
"quick_scan": {
"assessment": "…what this case is about and how serious it is…",
"next_step": "…the single action the receiving agent should take now…",
"status": "Waiting on customer"
},
"full_brief": {
"current_problem": "…symptoms, blockers, business impact…",
"actions_taken": ["action → outcome", "…"],
"key_context": "…customer plan, history, logs, error codes…"
},
"metadata": {
"input_length": 4210,
"brief_length": 1250,
"compression_ratio": 0.3
}
}check_escalation_readiness
Analyze whether a support ticket is ready to escalate to L2. Returns a readiness score (0–100), dimensional breakdown, predicted L2 questions, and missing items.
Input: ticket_content (string) — the ticket notes to evaluate. 10–20,000 characters.
Output (structured JSON):
{
"overall_score": 62,
"readiness": "borderline",
"dimensions": {
"problem_clarity": { "score": 80, "note": "…" },
"troubleshooting_evidence": { "score": 55, "note": "…" },
"business_impact": { "score": 40, "note": "…" },
"next_action": { "score": 70, "note": "…" },
"billing_defensibility": { "score": 65, "note": "…" }
},
"predicted_l2_questions": ["…", "…"],
"missing_items": ["…", "…"]
}Related MCP server: Customer Support MCP Server
Installation
git clone https://github.com/Casemargin/casemargin-mcp-server.git
cd casemargin-mcp-server
npm install
npm run buildClaude Desktop configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"casemargin": {
"command": "node",
"args": ["path/to/casemargin-mcp-server/dist/index.js"],
"env": {
"CASEMARGIN_API_KEY": "your-api-key-here"
}
}
}
}The API key is optional — without it, brief generation runs on the anonymous per-IP tier. Get a free key (8 briefs/month) at casemargin.com/signup. The escalation readiness check is free and needs no key.
Example usage
"What's happening with this ticket?"
Paste a ticket thread into your AI client and ask what's going on:
You: What's happening with this ticket?
Customer reports VPN drops every ~30 min since Monday. Rebooted router, reinstalled client v4.2, issue persists. Firewall logs show DHCP lease renewing every 30 min. Customer is on the Premium SLA, CFO is affected. Told them we'd escalate if not fixed by Friday…
Claude calls generate_case_brief and returns a structured brief:
Quick scan — Recurring VPN disconnects tied to a 30-minute DHCP lease renewal on a Premium SLA account with an executive affected; moderate-to-high urgency. Next step: Extend the DHCP lease time on the affected scope and confirm whether the drops track lease renewals. Status: Actively being worked.
…plus the full breakdown of current problem, actions already taken (each with outcome), and key context.
"Is this ticket ready to escalate?"
You: Is this ticket ready to escalate to L2?
(pastes the same thread)
Claude calls check_escalation_readiness and returns the score with a breakdown:
62/100 — borderline. Problem clarity is strong (80), but troubleshooting evidence is thin (55) — no packet capture or client logs attached — and business impact is asserted, not quantified (40). Before escalating, L2 will ask: "What do the VPN client logs show at the moment of the drop?" and "Does the issue follow the user across networks?"
About CaseMargin
CaseMargin turns raw support tickets into structured case briefs so the next agent picks up cold in seconds, not minutes. The web app, Zendesk integration, and free Escalation Readiness Score tool live at casemargin.com.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceAn AI-native incident response server that exposes diagnostic tools (system status, error logs, ticket creation) via MCP, enabling LLM agents to autonomously assess and respond to incidents.Last updated
- Alicense-qualityDmaintenanceEnables AI-powered customer support with real-time access to CRM, ticketing, and communication tools via MCP, supporting context-aware conversations and automated actions.Last updatedApache 2.0
- Alicense-qualityDmaintenanceAgent-to-agent reasoning-as-a-service providing structured reasoning, data analysis, decision support, and code/document review via REST API and MCP protocol.Last updatedMIT
- Alicense-qualityBmaintenanceEnables AI-driven customer support operations including conversation management, knowledge base, contacts, metrics, and settings via MCP.Last updatedMIT
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Agent-to-agent reasoning-as-a-service: chain-of-thought, analysis, and decision support.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Casemargin/casemargin-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server