Zendesk MCP
Provides tools for managing Zendesk Support tickets, including creating, searching, assigning, closing, adding comments, and retrieving metrics, enabling AI agents to handle customer support workflows.
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 MCPshow me the newest open 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.
Zendesk MCP
Model Context Protocol (MCP) server for Zendesk Support — connect AI agents in Cursor, VS Code, Claude Desktop, watsonx Orchestrate, and IBM Code Engine to 14 ticket tools (create, search, assign, close, comments, metrics). Install:
npx @markusvankempen/zendesk-mcp-server·pip install zendesk-mcp-server-py
zendesk · mcp · cursor · github-copilot · claude · ai-agents · customer-support · helpdesk · watsonx-orchestrate · typescript · python
Generic Zendesk integration for AI agents via the Model Context Protocol (MCP). Ships TypeScript and Python server implementations plus deployment examples for IDEs, IBM Code Engine, and watsonx Orchestrate.
Author: Markus van Kempen
Email: markus.van.kempen@gmail.com · mvk@ca.ibm.com
Website: markusvankempen.github.io
No bug too small, no syntax too weird.
Overview
Zendesk MCP exposes 14 support-ticket operations as MCP tools so AI agents in Cursor, VS Code, Claude Desktop, watsonx Orchestrate, and IBM Code Engine can manage tickets through natural language.
The core design solves requester attribution: tickets are created with the real customer as requester (not the API service account), so Zendesk email replies route correctly.
graph TB
subgraph clients [MCP Clients]
Cursor[Cursor / VS Code]
WxO[watsonx Orchestrate]
CE[Code Engine / Remote]
end
subgraph servers [Servers]
TS["TypeScript npm"]
PY["Python FastMCP"]
end
ZD[Zendesk REST API v2]
Cursor -->|stdio| TS
WxO -->|stdio| PY
CE -->|SSE| TS
CE -->|SSE| PY
TS --> ZD
PY --> ZD📖 Documentation hub → docs/ · MCP config examples → examples/mcp/ · Public vs private repo → docs/PUBLIC_REPO.md · Contributing → CONTRIBUTING.md · Security → docs/SECURITY.md
Related MCP server: zendesk-mcp
Documentation reference
Complete index of every markdown file in this repository.
Root
Document | Description |
Project overview, quick starts, deployments summary (this file) | |
Original project requirements and reference notes |
Core documentation (docs/)
Document | Description |
Documentation hub — start here | |
IDE setup — local | |
System design, stdio/SSE/WxO topologies, auth flow | |
All 14 MCP tools — parameters, returns, examples | |
Requester modes, role agents, 17 scenarios, E2E | |
Complete file inventory | |
Deployment docs index |
Package READMEs (packages/)
Document | Description |
TypeScript/npm server — install, env vars, SSE mode, build from source | |
Python FastMCP server — setup, SSE mode, WxO import pointer |
Deployment READMEs (deployments/)
Document | Description |
VS Code / Cursor / Open VSX extension — commands, settings, publish | |
IBM Code Engine — Dockerfiles, SSE endpoints, remote MCP client config | |
Code Engine — live deploy, test/admin UI, local vs deployed | |
WxO toolkit deploy, 4 role agents, scenario runner, CLI test commands |
Quick navigation by topic
Topic | Start here |
IDE setup (local | |
IDE setup (Code Engine) | |
Architecture & transports | |
Tool parameters & examples | |
WxO agents & test scenarios | |
Every file explained | |
npm / TypeScript server | |
Python / FastMCP server | |
IDE extension setup | |
Code Engine deploy | |
WxO deploy & E2E |
Repository layout
zendesk-mcp/
├── docs/ # Documentation hub
│ ├── README.md # Start here
│ ├── ide/ # IDE setup guides (local + remote)
│ ├── reference/ # ARCHITECTURE, TOOLS, FILES
│ ├── guides/ # SCENARIOS
│ └── deployments/ # Deployment index
├── packages/
│ ├── zendesk-mcp-server/ # TypeScript MCP server (npm)
│ └── zendesk-mcp-server-py/ # Python MCP server (FastMCP)
├── deployments/
│ ├── vscode-extension/ # VS Code / Cursor / Open VSX extension
│ ├── code-engine/ # IBM Code Engine (SSE) + mcp-client JSON
│ └── watsonx-orchestrate/ # WxO toolkit + 4 role agents
└── .github/workflows/ # CI + npm/marketplace publishQuick start (TypeScript / npm)
export ZENDESK_SUBDOMAIN=your-subdomain
export ZENDESK_EMAIL=agent@example.com
export ZENDESK_API_TOKEN=your_token
npx @markusvankempen/zendesk-mcp-serverOne-click install: Cursor · VS Code — then set your ZENDESK_* credentials in MCP settings.
Copy-paste setup: Bob · Antigravity (no install deeplink yet — use examples/mcp/):
Add to your IDE config — copy from examples/mcp/:
IDE | File |
Cursor | examples/mcp/cursor-local.json → |
VS Code | examples/mcp/vscode-local.json → |
Bob | |
Antigravity | |
Claude Desktop |
Or use the VS Code extension — it stores your API token in OS keychain and writes MCP config automatically. See deployments/vscode-extension/README.md.
Before pushing to GitHub, run npm run check:secrets — see docs/SECURITY.md.
Quick start (Python)
pip install zendesk-mcp-server-py
export ZENDESK_SUBDOMAIN=your-subdomain
export ZENDESK_EMAIL=agent@example.com
export ZENDESK_API_TOKEN=your_token
zendesk-mcp-server-pyMCP tools (14)
Tool | Description |
| Create ticket with correct requester attribution |
| Get ticket by ID |
| Update status, priority, tags, or comment |
| Zendesk search query syntax |
| Recently updated tickets |
| Admin-wide ticket listing |
| Tickets for a requester email |
| Read ticket conversation |
| Add public reply or internal note |
| Look up Zendesk user |
| Mark ticket solved |
| Reopen solved/closed ticket |
| SLA / timing metrics |
| Assign to group or agent |
→ Full tool reference with parameters & examples
Deployments
Scenario | Directory | Transport | Docs |
VS Code / Cursor / Open VSX |
| stdio via | |
IBM Code Engine |
| SSE | |
watsonx Orchestrate |
| stdio subprocess |
watsonx Orchestrate — role agents
Agent | Role |
| Self-service — create/list/comment on own tickets |
| Analyst — triage, investigate, metrics, assign |
| Admin — queue overview, SLA, assignment |
| Generalist — all tools, prototyping |
cd deployments/watsonx-orchestrate
./deploy_and_test.sh # full deploy + E2E
RUN_LIVE=1 ./run_agent_scenarios.sh # 17 role scenariosRequester attribution (key design)
sequenceDiagram
autonumber
actor User
participant WxO as WxO Agent
participant MCP as MCP Server
participant ZD as Zendesk
User->>WxO: "Create a ticket — account locked"
Note over WxO: wxo_email_id available
WxO->>MCP: create_ticket(requester_email=wxo_email_id)
MCP->>ZD: Find/create user + create ticket
ZD-->>MCP: ticket_id=42, requester=real customer
MCP-->>WxO: JSON result
WxO-->>User: "Ticket #42 created"Connection credentials (ZENDESK_*) authenticate the API. User identity (wxo_email_id) is mapped by the agent into tool arguments — the MCP server never sees WxO session context directly.
→ Full scenarios documentation
Development
npm install
npm run build # TypeScript server + VS Code extension
npm run build:server # TypeScript server only
npm run build:extensionCredentials
Never commit .env files or API tokens.
Deployment | Secret storage |
IDE extension | VS Code |
Code Engine |
|
WxO |
|
Local dev |
|
Variable | Purpose |
| Tenant prefix ( |
| Service account email for API auth |
| Zendesk API token |
Reference implementation
Extracted and generalized from WxO-ToolBox/vsc/test_tools/zendesk_mcp_server. See docs/reference/FILES.md for lineage mapping.
→ All documentation · task.md (original requirements)
Contributing
See CONTRIBUTING.md and CODE_OF_CONDUCT.md.
License
Links
PyPI: zendesk-mcp-server-py
GitHub (docs): markusvankempen/zendesk-mcp
MCP examples: examples/mcp/
More from the author
Part of the open-source toolkit at markusvankempen.github.io — alongside WxO Agent MCP, Maximo MCP Server, Code Engine MCP Server, and WxO Builder MCP Server.
Topics & keywords
zendesk · zendesk-api · zendesk-mcp · zendesk-support · zendesk-tickets · mcp · mcp-server · model-context-protocol · cursor · claude · claude-desktop · github-copilot · vscode · vscode-extension · open-vsx · ai-agent · ai-agents · tool-calling · function-calling · llm-tools · customer-support · customer-service · helpdesk · help-desk · service-desk · support-tickets · ticketing · crm · watsonx · watsonx-orchestrate · ibm-cloud · ibm-code-engine · typescript · python · fastmcp · stdio · sse · npx · npm-package · automation
Author: Markus van Kempen
Email: markus.van.kempen@gmail.com · mvk@ca.ibm.com
Website: markusvankempen.github.io
No bug too small, no syntax too weird.
Public distribution repo — server source is not included. Install via
npx -y @markusvankempen/zendesk-mcp-serverorpip install zendesk-mcp-server-py. See docs/PUBLIC_REPO.md for the private dev workflow.
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.
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/markusvankempen/zendesk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server