Zendesk Managed MCP Server
The Zendesk managed MCP server lets agents search, read, create, and update tickets in your Zendesk Support instance, look up users and organizations, and search, read, create, and update Help Center articles.
After reading this page, you will be able to:
-
Configure the Zendesk managed MCP server in API-token or User-OAuth mode
-
Pick the right scopes and Zendesk role for your workflows
-
Search, read, create, and update tickets from the Inspector or an agent
What this MCP server does
Wraps the Zendesk REST API. The following authentication modes are supported:
-
API token (Basic authentication): A long-lived agent token paired with the agent’s email. Best for service-account-style use.
-
User OAuth: Per-user Zendesk OAuth tokens resolved from the gateway’s token vault. Best when you want each agent action attributed to the calling end-user.
Responses are curated for token efficiency: HATEOAS URLs, transport metadata, and rarely-used fields are dropped before reaching the LLM. Related users, groups, and organizations are resolved into nested ref objects through Zendesk side-loading (single round trip), and Help Center article HTML is converted to GitHub-flavored markdown. Typical responses are 3–7× smaller than raw Zendesk JSON.
It is not intended for Zendesk admin operations (managing macros, triggers, ticket forms, custom fields, schedules, or SLAs); use the Zendesk Admin Center or a Terraform provider for those.
Prerequisites
Before you create the server, make sure you have:
-
A Zendesk Support instance.
-
For API token mode: ability to create an API token under Apps and integrations > APIs > Zendesk API.
-
For User OAuth mode: a Zendesk OAuth client and an OAuth Provider configured in Redpanda ADP. See Configure an OAuth Provider.
Get Zendesk credentials
Option 1: API token (recommended for service accounts)
-
In the Zendesk Admin Center, go to Apps and integrations > APIs > Zendesk API.
-
On the Settings tab, enable Token access.
-
Click Add API token, give it a descriptive label (for example,
redpanda-ai-gateway), and copy the token value. It is shown only once. -
Note the agent email the token will act as (the email of the user who created the token). The HTTP Basic authentication string the MCP builds is
base64(<email>/token:<api_token>). The/tokenliteral is Zendesk’s API-token quirk. -
Store the token in the ADP secret store under a name like
ZENDESK_API_TOKEN.
Required role: Agents and Admins can use the API. Most ticket operations work for the Agent role; reading users with search_users requires Light Agent or higher; Help Center search works for any authenticated user.
Option 2: User OAuth
For per-user authentication, register an OAuth client on Zendesk and a matching OAuth Provider in ADP:
-
Configure a Zendesk OAuth client under Apps and integrations > APIs > OAuth Clients (Confidential client, Authorization Code grant).
-
Register a matching OAuth Provider in ADP. See Configure an OAuth Provider. Use Zendesk’s authorize and token endpoints.
-
Each end-user authenticates once through the OAuth flow; tokens are stored in the gateway’s token vault.
Required scopes: read tickets:write hc:read hc:write covers all tools. Drop tickets:write (ticket writes) and hc:write (article create/update) if the MCP only needs to read.
Configure
Create a new Zendesk MCP server in ADP:
-
Open MCP Servers > Create Server.
-
Pick
Zendeskfrom the marketplace picker. -
Fill in identity fields (
name,description). -
In the Zendesk configuration form:
Field Notes subdomainYour Zendesk subdomain (the part before
.zendesk.com). Foracme.zendesk.com, set this toacme.authbasic_authfor API-token mode, oruser_oauthfor per-user mode.basic_auth(API-token mode)username(agent email used with the API token, for exampleagent@acme.com) andpassword_secret_ref(secret-store reference for the API token,UPPER_SNAKE_CASE).user_oauth(User-OAuth mode)provider_name(the Zendesk OAuth Provider you configured) and the minimum required scopes (read,tickets:write,hc:read,hc:writecovers all tools). -
Click Create.
Configure from the CLI
For a managed server, set the auth method inside the --managed-config JSON. The auth field is required.
-
API-token mode
-
User-OAuth mode
rpk ai mcp create --name acme-zendesk --managed-config '{
"@type": "type.googleapis.com/redpanda.mcps.zendesk.v1.ZendeskMCPConfig",
"subdomain": "acme",
"basic_auth": {
"username": "agent@acme.com",
"password_secret_ref": "ZENDESK_API_TOKEN"
}
}'
rpk ai mcp create --name acme-zendesk-oauth --managed-config '{
"@type": "type.googleapis.com/redpanda.mcps.zendesk.v1.ZendeskMCPConfig",
"subdomain": "acme",
"user_oauth": {
"provider_name": "zendesk-prod",
"required_scopes": ["read", "tickets:write", "hc:read"]
}
}'
Tools
The Zendesk MCP exposes tools across tickets, users, organizations, and Help Center articles. Article writes (create_article, update_article) require the hc:write scope (User-OAuth mode) or a Help Center manager role (API-token mode):
| Tool | Description |
|---|---|
|
Search tickets with Zendesk’s search syntax ( |
|
Filter tickets by discrete fields ( |
|
Fetch a single ticket by ID with side-loaded requester, submitter, assignee, group, and organization. Set |
|
List the comment thread on a ticket with explicit pagination. Use this when the thread exceeds 500 comments; otherwise prefer |
|
Open a new ticket (subject, description, optional priority/type/assignee/group/tags). Subject ≤150 chars, description ≤65536 chars, tags ≤50 chars each. |
|
Modify a ticket: status, priority, type, assignee, group, tags. Optionally append a public or internal comment in the same call. Distinct |
|
Find a Zendesk user by name, email, or other user-search fields. Returns full User objects. |
|
Fetch a single user by ID. Used to drill into a |
|
List organizations in the Zendesk account. |
|
Fetch a single organization by ID. Drills into an |
|
Search Help Center articles. Body is converted from HTML to GitHub-flavored markdown (tables included). |
|
Fetch a single Help Center article by ID. |
|
Create a new Help Center article from markdown (converted to HTML on upload), with an optional list of labels. The article is always created as a draft, so a human must publish it in Zendesk. |
|
Update an existing Help Center article. Only the fields you send change; omitted fields are left as-is. Markdown is converted to HTML on upload, and you can toggle draft status or clear all labels by sending an empty label list. |
Example: Triage open tickets
curl -s https://aigw.<cluster-id>.clusters.rdpa.co/mcp/v1/acme-zendesk \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_tickets",
"arguments": {
"query": "status:open priority:urgent",
"max_results": 10
}
}
}'
Example: Solve a ticket with a closing comment
curl -s https://aigw.<cluster-id>.clusters.rdpa.co/mcp/v1/acme-zendesk \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "update_ticket",
"arguments": {
"ticket_id": 12345,
"status": "solved",
"add_tags": ["resolved-by-agent"],
"comment": {
"body": "Resetting your password should fix this. Reopen if it persists.",
"public": true
}
}
}
}'
Example: Read a ticket with its full comment thread
For "summarize this ticket" flows, inline the comments:
curl -s https://aigw.<cluster-id>.clusters.rdpa.co/mcp/v1/acme-zendesk \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 4,
"method": "tools/call",
"params": {
"name": "get_ticket",
"arguments": {
"ticket_id": 12345,
"include_comments": true
}
}
}'
The handler follows Zendesk’s next_page URLs only when they point at the same host as the configured subdomain, so pagination cannot be hijacked by a malicious upstream response.
Troubleshooting
Common symptoms and fixes:
| Symptom | What to check |
|---|---|
|
Confirm |
|
The agent role on Zendesk’s side is below Light Agent. Upgrade the role or use API-token mode with a Light Agent or Admin email. |
|
First call from a user with no stored token. The user completes Zendesk’s OAuth consent flow, the token lands in the vault, and subsequent calls reuse it. See User-delegated OAuth. |
|
Server’s |
Search returns non-ticket records |
Cannot happen: the handler enforces a |
Limitations
This page does not cover:
-
Zendesk admin operations: Managing macros, triggers, ticket forms, custom fields, schedules, or SLAs. Use the Zendesk Admin Center or a Terraform provider.
-
Voice / chat / Talk: This MCP wraps Support tickets and Help Center; voice and chat are separate Zendesk products with their own APIs.