Zendesk MCP Server
by Zendesk ยท โญ 345 stars ยท updated 5 months ago
Customer support management via Zendesk. Create and update tickets, search help content, manage users, and handle support workflows through AI.
72
Good
Quality Score Breakdown
maintenance73/100
community70/100
documentation73/100
compatibility72/100
Use Cases
- โcreate support tickets
- โupdate ticket status
- โsearch knowledge base
- โmanage customers
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"zendesk": {
"command": "python",
"args": [
"-m",
"zendesk_mcp"
],
"env": {
"ZENDESK_SUBDOMAIN": "yourcompany",
"ZENDESK_EMAIL": "you@company.com",
"ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"zendesk": {
"command": "python",
"args": [
"-m",
"zendesk_mcp"
],
"env": {
"ZENDESK_SUBDOMAIN": "yourcompany",
"ZENDESK_EMAIL": "you@company.com",
"ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"zendesk": {
"command": "python",
"args": [
"-m",
"zendesk_mcp"
],
"env": {
"ZENDESK_SUBDOMAIN": "yourcompany",
"ZENDESK_EMAIL": "you@company.com",
"ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
}
}
}
}
}