zendesk-mcp
MCP server for Zendesk support workflows that enables ticket search, lookup, creation, commenting, status updates, and user listing through natural language. It uses OAuth authentication and supports both internal notes and public comments.
README
zendesk-mcp
Dedalus MCP server for Zendesk support workflows: ticket search, ticket lookup, user listing, ticket creation, internal notes or public comments, and ticket status updates.
Tools
search_tickets- Search Zendesk tickets with Zendesk search syntax.get_ticket- Fetch one ticket by ID.list_users- List Zendesk users, optionally filtered by role.create_ticket- Create a new ticket with an initial comment.add_ticket_comment- Add an internal note or customer-visible public comment.update_ticket_status- Change a ticket status.
Safety Notes
create_ticket, add_ticket_comment, and update_ticket_status are write tools. Zendesk triggers, automations, and notification settings may email customers or alter support queues. add_ticket_comment defaults to public_comment=false; set it to true only when a customer-visible reply is intended.
Do not put Zendesk OAuth access tokens, client secrets, or requester personal data in commits, logs, issue trackers, screenshots, or public demos.
Authentication
This is a Dedalus Type 4 OAuth server. The server declares a DAuth connection named zendesk-mcp with secret key ZENDESK_ACCESS_TOKEN. Dedalus performs the OAuth flow and injects a bearer token at request time; the server code does not handle refresh tokens.
Required deployment variables:
OAUTH_ENABLED=true
OAUTH_AUTHORIZE_URL=https://<subdomain>.zendesk.com/oauth/authorizations/new
OAUTH_TOKEN_URL=https://<subdomain>.zendesk.com/oauth/tokens
OAUTH_CLIENT_ID=...
OAUTH_CLIENT_SECRET=...
OAUTH_SCOPES_AVAILABLE=read,write
OAUTH_BASE_URL=https://<subdomain>.zendesk.com
ZENDESK_BASE_URL=https://<subdomain>.zendesk.com
DEDALUS_AS_URL=https://as.dedaluslabs.ai
For local DirectDispatch development, set ZENDESK_ACCESS_TOKEN to a short-lived OAuth token and set ZENDESK_BASE_URL to your Zendesk subdomain URL.
Run Locally
uv run python src/main.py
In another terminal:
MCP_SERVER_URL=http://127.0.0.1:8080/mcp uv run python src/_client.py
src/_client.py calls every tool. Write-tool calls use smoke-test values from environment variables such as ZENDESK_TEST_TICKET_ID, ZENDESK_TEST_REQUESTER_EMAIL, and ZENDESK_TEST_STATUS.
Deploy
Publish this repository as dedalus-labs/zendesk-mcp, configure the OAuth variables above in Dedalus, deploy, then run:
DEDALUS_MCP_SERVER_ONLY=1 DEDALUS_MCP_SERVER=dedalus-labs/zendesk-mcp uv run python src/_client.py
Complete the OAuth browser flow when prompted.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.