Skip to content
VS Code

Bamboo MCP Server for VS Code

io.github.hmdmph/bamboo-mcp

Read-only MCP server for self-hosted Atlassian Bamboo CI/CD

client:VS Code transport:stdio runtime:oci

Install Bamboo MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bamboo-url",
      "description": "BAMBOO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bamboo-token",
      "description": "BAMBOO_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bamboo-proxy",
      "description": "BAMBOO_PROXY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbucket-url",
      "description": "BITBUCKET_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verbose",
      "description": "VERBOSE",
      "password": true
    }
  ],
  "servers": {
    "bamboo-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/hmdmph/bamboo-mcp:0.1.2"
      ],
      "env": {
        "BAMBOO_URL": "${input:bamboo-url}",
        "BAMBOO_TOKEN": "${input:bamboo-token}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "BAMBOO_PROXY": "${input:bamboo-proxy}",
        "BITBUCKET_URL": "${input:bitbucket-url}",
        "VERBOSE": "${input:verbose}"
      }
    }
  }
}

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

Bamboo MCP Server in other clients