zendesk-mcp-server
by reminia·★ 96·Score 47
A comprehensive MCP server for Zendesk integration with ticket management and knowledge base access.
Overview
The zendesk-mcp-server provides a robust integration with Zendesk through the Model Context Protocol. It offers tools for retrieving, creating, updating, and managing tickets, along with access to Zendesk Help Center articles as a knowledge base resource. The server supports both direct installation via uv and containerization with Docker, making it flexible for different deployment needs. The implementation includes pagination support for ticket retrieval and proper handling of various ticket fields and status updates.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're using Zendesk for customer support and want to integrate AI assistance directly into your ticket management workflow without building custom integrations.
When NOT to choose this
Don't choose this if you need to integrate with a different help desk system or require functionality beyond what Zendesk's API provides.
Tools this server exposes
6 tools extracted from the READMEget_ticketsFetch the latest tickets with pagination support
get_ticketRetrieve a Zendesk ticket by its ID
get_ticket_commentsRetrieve all comments for a Zendesk ticket by its ID
create_ticket_commentCreate a new comment on an existing Zendesk ticket
create_ticketCreate a new Zendesk ticket
update_ticketUpdate fields on an existing Zendesk ticket
Comparable tools
Installation
Installation
- Clone the repository:
git clone https://github.com/reminia/zendesk-mcp-server.git - Create virtual environment and install dependencies:
uv venv && uv pip install -e . - Copy
.env.exampleto.envand add your Zendesk credentials - Configure in Claude Desktop:
{
"mcpServers": {
"zendesk": {
"command": "uv",
"args": [
"--directory",
"/path/to/zendesk-mcp-server",
"run",
"zendesk"
]
}
}
}Docker Option
- Copy
.env.exampleto.envand fill in your credentials - Build the image:
docker build -t zendesk-mcp-server . - Run with:
docker run --rm --env-file /path/to/.env zendesk-mcp-server
Compare zendesk-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.