Home/Servers/Zendesk MCP Server

Zendesk MCP Server

by Zendesk ยท โญ 345 stars ยท updated 5 months ago

Customer support management via Zendesk. Create and update tickets, search help content, manage users, and handle support workflows through AI.

72
Good

Quality Score Breakdown

maintenance73/100
community70/100
documentation73/100
compatibility72/100

Use Cases

  • โœ“create support tickets
  • โœ“update ticket status
  • โœ“search knowledge base
  • โœ“manage customers

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "zendesk": {
      "command": "python",
      "args": [
        "-m",
        "zendesk_mcp"
      ],
      "env": {
        "ZENDESK_SUBDOMAIN": "yourcompany",
        "ZENDESK_EMAIL": "you@company.com",
        "ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "zendesk": {
      "command": "python",
      "args": [
        "-m",
        "zendesk_mcp"
      ],
      "env": {
        "ZENDESK_SUBDOMAIN": "yourcompany",
        "ZENDESK_EMAIL": "you@company.com",
        "ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "zendesk": {
        "command": "python",
        "args": [
          "-m",
          "zendesk_mcp"
        ],
        "env": {
          "ZENDESK_SUBDOMAIN": "yourcompany",
          "ZENDESK_EMAIL": "you@company.com",
          "ZENDESK_API_TOKEN": "YOUR_ZENDESK_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers