mcp-server-zendesk
Enables AI assistants to search tickets, manage tags, create tickets, inspect automations, and more in Zendesk.
README
mcp-server-zendesk
An MCP server that gives AI assistants full access to your Zendesk instance — search tickets, manage tags, create tickets, inspect automations, and more.
Works with Kiro, Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
What it does
Connect your AI assistant to Zendesk and ask things like:
- "How many unsolved tickets do we have?"
- "Show me all high-priority tickets assigned to john@company.com"
- "Create a ticket for the billing team about the invoice issue"
- "Add an internal note to ticket 4521 saying we're waiting on the vendor"
- "Who solved the most tickets today?"
- "What macros do we have for password reset requests?"
- "List all automations that fire on pending tickets"
Tools (27)
Tickets
| Tool | Description |
|---|---|
count_tickets |
Count tickets matching any search query |
search_tickets |
Search tickets with full details and pagination |
get_ticket |
Get single ticket with all comments and custom fields |
get_ticket_audits |
Get change history (status changes, reassignments) |
get_ticket_comments |
Get all comments and internal notes |
create_ticket |
Create a new ticket |
edit_ticket |
Update ticket fields (status, priority, tags, etc.) |
solve_ticket |
Mark a ticket as solved |
bulk_solve_tickets_by_type |
Solve all tickets matching a tag |
add_comment |
Add a public reply or internal note |
add_ticket_tags |
Add tags without removing existing ones |
remove_ticket_tags |
Remove specific tags |
Users & Organizations
| Tool | Description |
|---|---|
get_user |
Get user details by ID |
search_users |
Search users by name or email |
get_organization |
Get organization details by ID |
search_organizations |
Search organizations by name |
Views
| Tool | Description |
|---|---|
get_view |
Get view configuration and conditions |
count_view |
Get ticket count for a view |
list_view_tickets |
List tickets in a view |
list_ticket_fields |
List all ticket fields including custom fields |
Business Rules
| Tool | Description |
|---|---|
list_triggers |
List event-based automation rules |
get_trigger |
Get full trigger details |
search_triggers |
Search triggers by title |
list_automations |
List time-based automation rules |
list_macros |
List prepared agent responses and actions |
Groups & Performance
| Tool | Description |
|---|---|
list_groups |
List agent groups |
get_agent_performance_today |
Agent ranking by tickets solved |
Quick Start
1. Install
git clone https://github.com/kalchevs/zendesk-mcp.git
cd zendesk-mcp
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
2. Configure
cp .env.example .env
Edit .env — choose one authentication mode:
Option A — API Token (simple, no expiry):
ZD_SUBDOMAIN=your-company
ZD_EMAIL=agent@company.com
ZD_API_TOKEN=your-token-here
Option B — OAuth Bearer Token (recommended for production):
ZD_SUBDOMAIN=your-company
ZD_OAUTH_ACCESS_TOKEN=your-access-token
ZD_OAUTH_REFRESH_TOKEN=your-refresh-token
ZD_OAUTH_CLIENT_ID=your-client-id
ZD_OAUTH_CLIENT_SECRET=your-client-secret
OAuth tokens are refreshed automatically when they expire (401 → refresh → retry). If only ZD_OAUTH_ACCESS_TOKEN is set without refresh credentials, the server works until the token expires.
3. Connect to your AI client
See detailed setup for each client below.
Client Setup
Kiro IDE
Option A — Stdio (local, recommended for development):
Create .kiro/settings/mcp.json in your workspace root:
{
"mcpServers": {
"zendesk": {
"command": "./venv/bin/python3",
"args": ["./mcp_server.py"],
"autoApprove": [
"count_tickets",
"search_tickets",
"get_ticket",
"get_ticket_comments",
"get_user",
"search_users",
"list_triggers",
"list_macros",
"list_groups"
]
}
}
}
Or copy the included example:
mkdir -p .kiro/settings
cp mcp.json.example .kiro/settings/mcp.json
Option B — SSE (remote Docker server):
{
"mcpServers": {
"zendesk": {
"url": "http://localhost:8080/sse"
}
}
}
After saving, the server connects automatically. Check the MCP Server panel in Kiro to confirm. If it doesn't connect, use Command Palette → "MCP: Reconnect Server".
Kiro CLI
Same config file at ~/.kiro/settings/mcp.json (global) or .kiro/settings/mcp.json (workspace):
cp mcp.json.example ~/.kiro/settings/mcp.json
Then start a session:
kiro
# "How many unsolved tickets do we have?"
# "Show me tickets assigned to john@company.com"
# "Create a ticket about the login issue for customer@example.com"
Claude Code
Add to your Claude Code MCP configuration (~/.claude/mcp.json or project-level):
Stdio (local):
{
"mcpServers": {
"zendesk": {
"command": "/path/to/zendesk-mcp/venv/bin/python3",
"args": ["/path/to/zendesk-mcp/mcp_server.py"]
}
}
}
SSE (remote/Docker):
{
"mcpServers": {
"zendesk": {
"url": "http://localhost:8080/sse"
}
}
}
Note for Claude Code stdio: Use absolute paths since Claude Code may not run from the project directory.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"zendesk": {
"command": "/path/to/zendesk-mcp/run_mcp.sh",
"args": []
}
}
}
The run_mcp.sh wrapper auto-detects its directory, so it works regardless of Claude Desktop's working directory.
Cursor / Windsurf / Other MCP Clients
Any client that supports the MCP protocol works. Use either:
- Stdio: point to
./venv/bin/python3with args["./mcp_server.py"] - SSE: connect to
http://localhost:8080/sse(requires Docker orpython3 mcp_server_http.pyrunning)
Docker
Run as a remote HTTP/SSE server:
# With Docker Compose (recommended)
docker compose up -d --build
# Health check
curl http://localhost:8080/health
Then connect clients using the SSE URL:
{
"mcpServers": {
"zendesk": {
"url": "http://localhost:8080/sse"
}
}
}
Architecture
mcp_server.py — MCP protocol server (stdio transport)
mcp_server_http.py — HTTP/SSE transport (for Docker/network)
tools.py — Core ticket tools (async)
tools_extra.py — User, org, view, trigger, macro, group tools (async)
zendesk_client.py — Async HTTP client with retry, rate-limit handling, path allowlist
config.py — Settings from .env via pydantic-settings
Key design decisions:
- Async-first — all tools use
httpx.AsyncClientfor non-blocking I/O - Path allowlisting — only pre-approved Zendesk API endpoints can be called
- Rate limit retry — automatic backoff on 429 and 5xx errors
- Error masking — set
MASK_ERRORS=truein production to hide internal details - Lifespan management — HTTP client properly opened/closed on server start/stop
Query Syntax
All ticket search queries must include type:ticket:
type:ticket status<solved # All unsolved
type:ticket priority:high status:open # High priority open
type:ticket assignee:user@company.com # By assignee
type:ticket created>=2025-01-01 created<2025-02-01 # Date range
type:ticket tags:billing organization:ACME # Tag + org
type:ticket "exact phrase" # Text search
Security
- API credentials stay in
.env(gitignored) - Supports both API token and OAuth authentication
- OAuth tokens are refreshed automatically on expiry — no manual intervention
- Path allowlist prevents access to unauthorized Zendesk endpoints
- Write tools require explicit approval (not auto-approved)
MASK_ERRORS=truehides internal error details in production- Docker Compose reads
.envat runtime (credentials not baked into image)
Requirements
- Python 3.10+
- Zendesk account with API access
- One of:
- API token from Zendesk Admin > Channels > API
- OAuth access token (from authorization code or client credentials flow)
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。