Skip to content
VS Code

spinnaker mcp for VS Code

io.github.geiserx/spinnaker-mcp

MCP server exposing Spinnaker CD platform via Gate API for pipeline and deployment management

client:VS Code transport:stdio runtime:npm

Install spinnaker mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gate-url",
      "description": "GATE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gate-token",
      "description": "GATE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gate-user",
      "description": "GATE_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gate-pass",
      "description": "GATE_PASS",
      "password": true
    }
  ],
  "servers": {
    "spinnaker-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "spinnaker-mcp"
      ],
      "env": {
        "GATE_URL": "${input:gate-url}",
        "GATE_TOKEN": "${input:gate-token}",
        "GATE_USER": "${input:gate-user}",
        "GATE_PASS": "${input:gate-pass}"
      }
    }
  }
}

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

spinnaker mcp in other clients