zendesk-mcp
Provides tools for Zendesk support workflows, including searching similar tickets, retrieving customer context (organization and ticket history), assessing solutions by version, and summarizing daily work activity.
Click 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., "@zendesk-mcpSearch similar tickets for 'email not sending'"
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.
zendesk-mcp
A custom MCP (Model Context Protocol) server for Zendesk support workflows, built with Node + TypeScript
and the official @modelcontextprotocol/sdk.
What it does
Exposes four tools that Claude (or any MCP client) can call:
Tool | Purpose |
| Semantic search (via an external vector index) + live Zendesk keyword search for similar past issues |
| Pull a customer's org + full ticket history before responding |
| Find past fixes for an issue and check if they apply to the customer's version |
| Roll up a day's Zendesk activity: tickets touched, by status, high-priority follow-ups |
Related MCP server: Zendesk MCP Server
Tool reference
Each tool's parameters are defined by its inputSchema in src/tools/*.ts — that file is the source of truth if this
table drifts. Params are passed as a JSON object matching the schema below.
Tool | Parameter | Type | Required | Default | Notes |
|
| string | yes | — | Description of the issue/symptom to search for |
| integer (1-20) | no |
| Max number of similar past tickets to return | |
|
| string (email) | one of | — | Single customer/requester email address |
| string | one of | — | Customer organization name, e.g. | |
|
| string | yes | — | Issue description to search past solutions for |
| string | yes | — | Customer's current product version, e.g. | |
| integer (1-20) | no |
| Max number of past-solution matches to consider | |
|
| string ( | no | today | Day to summarize |
| string (email) | no |
| Scopes results to this assignee; defaults to you |
Calling a tool through Claude
Describe what you want in plain language — Claude fills in the parameters:
Run summarize_daily_work for 2026-07-20
Search similar tickets for "PDF export hangs on large files", top 10
Get customer context for jane@example.com
Get customer context for the organization AnthologyCalling a tool via raw MCP JSON-RPC
This is the tools/call request the client actually sends (see test-client.mjs for a working example):
{
"method": "tools/call",
"params": {
"name": "summarize_daily_work",
"arguments": {
"date": "2026-07-20",
"assignee": "sophia.banda@nutrient.io"
}
}
}Omit any optional argument to fall back to its default (e.g. omit date for "today", omit assignee to scope to
ZENDESK_EMAIL).
Calling a tool from a plain terminal (no Claude Code needed)
The server is just a Node process speaking MCP over stdio — any MCP client can talk to it, including a terminal
script. Use run.mjs (loads your real .env, unlike test-client.mjs which uses fake credentials for smoke
testing):
node run.mjs <tool_name> '<json_args>'
# examples
node run.mjs get_customer_context '{"organization":"Anthology"}'
node run.mjs get_customer_context '{"requesterEmail":"jane@example.com"}'
node run.mjs summarize_daily_work '{"date":"2026-07-20"}'
node run.mjs search_similar_tickets '{"issue":"PDF export hangs on large files","topK":10}'Run npm run build first if you've made source changes — this calls the compiled server in build/, not the
TypeScript source directly.
How it's put together
src/
clients/
zendesk.ts – thin wrapper over the Zendesk REST API (search, tickets, users, orgs)
vectorDb.ts – adapter interface (VectorDb) + a mock implementation + a generic HTTP
implementation, so the real backend can be swapped in via .env only
tools/
searchSimilarTickets.ts
customerInfo.ts
assessSolutions.ts
dailySummary.ts
index.ts – wires everything together and starts the server over stdio
test-client.mjs – a tiny MCP client used to sanity-check the server without wiring it into ClaudeWhy the adapter pattern for the vector DB
The exact shape of the backing RAG index isn't fixed yet. Rather than hard-coding a client, vectorDb.ts defines
a one-method interface:
interface VectorDb {
search(query: string, topK?: number): Promise<VectorMatch[]>;
}Everything else in the codebase (the tools) only depends on that interface, not on a specific backend.
VECTOR_DB_PROVIDER=mock in .env gives a fake in-memory index for building and testing end-to-end. Once the
real index's API is known:
use the built-in
HttpVectorDbif there's a query endpoint in front of it (adjust the request/response shape invectorDb.tsto match the actual API), oradd a new class (e.g.
PineconeVectorDb,QdrantVectorDb) implementing the same interface, and add a case for it invectorDbFromEnv().
No changes needed anywhere else.
Setup
npm install
cp .env.example .env # fill in your Zendesk subdomain/email/API token
npm run build.env fields:
ZENDESK_SUBDOMAIN/ZENDESK_EMAIL/ZENDESK_API_TOKEN— from Zendesk Admin Center > Apps and integrations > APIs > Zendesk API. Generate a token there and enable token access.VECTOR_DB_PROVIDER—mockto start; switch once you have real connection info.
Running it standalone (for testing)
node test-client.mjsThis spawns the built server, lists its tools, and calls assess_solutions_by_version against the mock vector
data — useful for iterating without wiring the server into an actual MCP client.
Registering it with Claude
Add it to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json, or Claude Code's
.mcp.json):
{
"mcpServers": {
"zendesk-mcp": {
"command": "node",
"args": ["/absolute/path/to/zendesk-mcp/build/index.js"],
"env": {
"ZENDESK_SUBDOMAIN": "your-company",
"ZENDESK_EMAIL": "you@company.com",
"ZENDESK_API_TOKEN": "...",
"VECTOR_DB_PROVIDER": "mock"
}
}
}
}Notes / open items
(Internal notes — may be stale, keep or prune as they're resolved.)
The real vector index's query interface isn't confirmed yet (REST endpoint? Python service? direct DB connection to Pinecone/Qdrant/pgvector/etc). That determines whether
HttpVectorDbworks as-is, needs tweaking, or a new adapter class is needed.Once wired to the real index, revisit the
metadatashapeassess_solutions_by_versionexpects (fixedInVersion,product,tags) — align it with whatever fields the index actually stores per chunk.Consider adding a
list_productsorlist_versionstool if there's a canonical version list to validatecustomerVersionagainst.Add tests (e.g. with
node --test) forcompareVersionsinassessSolutions.ts— it's a naive semver comparator and worth hardening for versions like8.4.2-rc1.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/sophiabanda/zendesk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server