Skip to content
VS Code

Zscaler Zero Trust Exchange for VS Code

io.github.zscaler/zscaler-mcp-server

Manage Zscaler Zero Trust Exchange via 400+ tools — ZPA, ZIA, ZDX, ZCC, ZTW, ZMS, EASM, and more.

client:VS Code transport:stdio runtime:pypi

Install Zscaler Zero Trust Exchange in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zscaler-client-id",
      "description": "ZSCALER_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zscaler-client-secret",
      "description": "ZSCALER_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zscaler-customer-id",
      "description": "ZSCALER_CUSTOMER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zscaler-vanity-domain",
      "description": "ZSCALER_VANITY_DOMAIN",
      "password": true
    }
  ],
  "servers": {
    "zscaler-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "zscaler-mcp"
      ],
      "env": {
        "ZSCALER_CLIENT_ID": "${input:zscaler-client-id}",
        "ZSCALER_CLIENT_SECRET": "${input:zscaler-client-secret}",
        "ZSCALER_CUSTOMER_ID": "${input:zscaler-customer-id}",
        "ZSCALER_VANITY_DOMAIN": "${input:zscaler-vanity-domain}"
      }
    }
  }
}

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

Zscaler Zero Trust Exchange in other clients