Skip to content
VS Code

buildkite mcp server for VS Code

io.github.buildkite/buildkite-mcp-server

MCP server exposing Buildkite API data (pipelines, builds, jobs, tests) to AI tooling and editors.

client:VS Code transport:stdio runtime:oci

Install buildkite mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "buildkite-api-token",
      "description": "BUILDKITE_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "buildkite-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/buildkite/buildkite-mcp-server:0.7.0"
      ],
      "env": {
        "BUILDKITE_API_TOKEN": "${input:buildkite-api-token}"
      }
    }
  }
}

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

buildkite mcp server in other clients