reminia/zendesk-mcp-server
Built by Metorial, the integration platform for agentic AI.
reminia/zendesk-mcp-server
Server Summary
Retrieve Zendesk tickets
Manage Zendesk comments
Draft responses for tickets
Analyze ticket data
Access Help Center articles
A Model Context Protocol server for Zendesk.
This server provides a comprehensive integration with Zendesk. It offers:
uv venv && uv pip install -e .
or uv build
in short..env
file, refer to .env.example.{
"mcpServers": {
"zendesk": {
"command": "uv",
"args": [
"--directory",
"/path/to/zendesk-mcp-server",
"run",
"zendesk"
]
}
}
}
Analyze a Zendesk ticket and provide a detailed analysis of the ticket.
Draft a response to a Zendesk ticket.
Fetch the latest tickets with pagination support
Input:
page
(integer, optional): Page number (defaults to 1)per_page
(integer, optional): Number of tickets per page, max 100 (defaults to 25)sort_by
(string, optional): Field to sort by - created_at, updated_at, priority, or status (defaults to created_at)sort_order
(string, optional): Sort order - asc or desc (defaults to desc)Output: Returns a list of tickets with essential fields including id, subject, status, priority, description, timestamps, and assignee information, along with pagination metadata
Retrieve a Zendesk ticket by its ID
ticket_id
(integer): The ID of the ticket to retrieveRetrieve all comments for a Zendesk ticket by its ID
ticket_id
(integer): The ID of the ticket to get comments forCreate a new comment on an existing Zendesk ticket
ticket_id
(integer): The ID of the ticket to comment oncomment
(string): The comment text/content to addpublic
(boolean, optional): Whether the comment should be public (defaults to true)