Zendesk Help Center MCP Server
Allows browsing and searching public Zendesk Help Centers, fetching articles, categories, sections, and community content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Zendesk Help Center MCP ServerSearch support.zendesk.com for articles about API documentation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zendesk Help Center MCP Server
A read-only MCP (Model Context Protocol) server for querying public Zendesk Help Center APIs. Lets AI agents browse, search, and fetch documentation from any public Zendesk Help Center.
Features
Browse Help Center structure (categories, sections, articles)
Fetch article content as clean markdown
Search articles by keyword
Browse community posts and comments
Locale-aware (filter by language)
HTTP response caching (7-day TTL via hishel)
Works with any public Zendesk Help Center (no auth required)
Related MCP server: mcp-server-zendesk
Installation
Requires Python 3.10+.
git clone <repo-url>
cd zendesk
uv syncOr with pip:
pip install -e .Configuration
Claude Code
Add a .mcp.json file to your project root (or any project that needs Zendesk HC access):
{
"mcpServers": {
"zendesk-hc": {
"command": "uv",
"args": ["--directory", "/path/to/zendesk-hc-mcp", "run", "zendesk-hc-mcp"]
}
}
}Replace /path/to/zendesk-hc-mcp with the absolute path to where you cloned this repo. Do not use ~ — tilde expansion does not work in MCP config.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"zendesk-hc": {
"command": "uv",
"args": ["--directory", "/path/to/zendesk-hc-mcp", "run", "zendesk-hc-mcp"]
}
}
}Note: uv must be on PATH for the MCP host process to find it.
Available Tools
All tools take subdomain as the first parameter (e.g., "support.zendesk.com"). All tools accept force_refresh=True to bypass the cache. Most tools accept an optional locale parameter (e.g., "en-us", "ru") to filter by language.
Structure Browsing
Tool | Description |
| Entry point: shows locales, categories, and section counts |
| Sections, optionally filtered by category |
Content Retrieval
Tool | Description |
| Single article with full markdown body |
| Batch fetch multiple articles concurrently |
| TOC by default; set |
| Keyword search with snippets (no bodies) |
Community
Tool | Description |
| Forum topics |
| Posts with body previews and comment counts |
| Full post with comments |
Usage Examples
Discover a Help Center's structure:
list_categories("support.zendesk.com")Browse sections in a category:
list_sections("support.zendesk.com", category_id=360001006608)Fetch all articles in a section (TOC only):
get_section_articles("support.zendesk.com", section_id=360000031847)Fetch articles with full content:
get_section_articles("support.zendesk.com", section_id=360000031847, include_body=True, max_articles=5)Search for articles:
search_articles("support.zendesk.com", query="API")Cache
Responses are cached for 7 days in .cache/ (project-local) using hishel (SQLite-backed HTTP cache).
Use
force_refresh=Trueon any tool to bypass the cacheDelete the
.cache/directory to clear all cached dataThe
.cache/directory is gitignored
Override the default TTL (in seconds) with the ZENDESK_HC_CACHE_TTL environment variable in your .mcp.json:
{
"mcpServers": {
"zendesk-hc": {
"command": "uv",
"args": ["--directory", "/path/to/zendesk-hc-mcp", "run", "zendesk-hc-mcp"],
"env": {
"ZENDESK_HC_CACHE_TTL": "86400"
}
}
}
}Development
# Install dev dependencies
uv sync
# Run tests
uv run pytest -v
# Run the server (stdio mode)
uv run zendesk-hc-mcpContributing
Contributions are welcome! To get started:
Fork the repository
Create a feature branch (
git checkout -b feature/my-feature)Install dev dependencies:
uv syncMake your changes following TDD (write tests first)
Run the test suite:
uv run pytest -vEnsure coverage stays above 90%:
uv run pytest --cov=zendesk_hc_mcp --cov-report=term-missingSubmit a pull request
See CLAUDE.md for architecture details and development conventions.
Disclaimer
This project is not affiliated with, endorsed by, or sponsored by Zendesk, Inc. "Zendesk" is a registered trademark of Zendesk, Inc. This tool accesses the publicly available Zendesk Help Center API and is intended for lawful, read-only use.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gschaer/zendesk-hc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server