Skip to content
VS Code

mcp zenml for VS Code

io.github.zenml-io/mcp-zenml

MCP server for discovering, reading, and changing ZenML resources with compact generic tools

client:VS Code transport:stdio runtime:oci

Install mcp zenml in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zenml-store-url",
      "description": "ZENML_STORE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zenml-store-api-key",
      "description": "ZENML_STORE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zenml-mcp-profile",
      "description": "ZENML_MCP_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zenml-mcp-write-policy",
      "description": "ZENML_MCP_WRITE_POLICY",
      "password": true
    }
  ],
  "servers": {
    "mcp-zenml": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/zenmldocker/mcp-zenml:2.0.0"
      ],
      "env": {
        "ZENML_STORE_URL": "${input:zenml-store-url}",
        "ZENML_STORE_API_KEY": "${input:zenml-store-api-key}",
        "ZENML_MCP_PROFILE": "${input:zenml-mcp-profile}",
        "ZENML_MCP_WRITE_POLICY": "${input:zenml-mcp-write-policy}"
      }
    }
  }
}

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

mcp zenml in other clients