Skip to content
VS Code

Zendesk for VS Code

io.github.mindstone/mcp-server-zendesk

Zendesk MCP server for Model Context Protocol hosts

client:VS Code transport:stdio runtime:npm

Install Zendesk in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zendesk-config-path",
      "description": "ZENDESK_CONFIG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zendesk-client-id",
      "description": "ZENDESK_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zendesk-client-secret",
      "description": "ZENDESK_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-zendesk": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-zendesk"
      ],
      "env": {
        "ZENDESK_CONFIG_PATH": "${input:zendesk-config-path}",
        "ZENDESK_CLIENT_ID": "${input:zendesk-client-id}",
        "ZENDESK_CLIENT_SECRET": "${input:zendesk-client-secret}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Zendesk in other clients