Docker MCP Hub¶
Direct link: hub.docker.com/mcp/server/zscaler-mcp-server
Docker maintains a curated MCP server catalog. The Zscaler image is published with three tag families:
Tag |
Use case |
|---|---|
|
Most recent stable release. Recommended for local dev and quick-start tests. |
|
Each released version. Recommended for production — pin to a known version. |
|
Bleeding edge from the |
The image works with every MCP client that supports the docker transport pattern:
{
"mcpServers": {
"zscaler-mcp-server": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--env-file", "/absolute/path/to/.env",
"zscaler/zscaler-mcp-server:latest"
]
}
}
}
HTTP-transport deployments¶
When deploying as an HTTP service (Bedrock AgentCore, Cloud Run, Container Apps, Kubernetes), pull the same image and pass --transport streamable-http:
docker run -d --name zscaler-mcp-server \
--env-file /path/to/.env \
-p 8000:8000 \
zscaler/zscaler-mcp-server:latest \
--transport streamable-http --host 0.0.0.0
For full deployment guides, see the per-platform branches under Deployment.
See also¶
Deployment — every cloud and Kubernetes deployment target uses this same image.
Registries and Marketplaces — back to the registries overview.