HomeCloud & Monitoring › spinnaker-mcp

spinnaker-mcp

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

Go Cloud
★ 5 stars Last pushed 2026-08-24 License: GPL-3.0

Topics: Cloud Platforms

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.3.2)

npx -y [email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "spinnaker-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "[email protected]"
      ],
      "env": {
        "GATE_URL": "<YOUR_VALUE>",
        "GATE_TOKEN": "<YOUR_VALUE>",
        "GATE_USER": "<YOUR_VALUE>",
        "GATE_PASS": "<YOUR_VALUE>"
      }
    }
  }
}
  • GATE_URL required — Spinnaker Gate API URL (e.g. http://spin-gate:8084)
  • GATE_TOKEN secret — Bearer token for Gate authentication
  • GATE_USER — Basic auth username (alternative to token)
  • GATE_PASS secret — Basic auth password

Package (oci)

docker run -i --rm drumsergio/spinnaker-mcp:v0.3.2

Or add to your MCP client config:

{
  "mcpServers": {
    "spinnaker-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "drumsergio/spinnaker-mcp:v0.3.2"
      ],
      "env": {
        "GATE_URL": "<YOUR_VALUE>",
        "GATE_TOKEN": "<YOUR_VALUE>",
        "GATE_USER": "<YOUR_VALUE>",
        "GATE_PASS": "<YOUR_VALUE>"
      }
    }
  }
}
  • GATE_URL required — Spinnaker Gate API URL (e.g. http://spin-gate:8084)
  • GATE_TOKEN secret — Bearer token for Gate authentication
  • GATE_USER — Basic auth username (alternative to token)
  • GATE_PASS secret — Basic auth password

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry