Skip to content
VS Code

bitbucket mcp server for VS Code

io.github.droplinkperformance/bitbucket-mcp-server

Provider-agnostic, AI-review-first MCP server for Bitbucket Cloud.

client:VS Code transport:stdio runtime:npm

Install bitbucket mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bitbucket-access-token",
      "description": "BITBUCKET_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbucket-email",
      "description": "BITBUCKET_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbucket-default-workspace",
      "description": "BITBUCKET_DEFAULT_WORKSPACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-provider",
      "description": "LLM_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "bitbucket-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@droplinkperformance/bitbucket-mcp-server"
      ],
      "env": {
        "BITBUCKET_ACCESS_TOKEN": "${input:bitbucket-access-token}",
        "BITBUCKET_EMAIL": "${input:bitbucket-email}",
        "BITBUCKET_DEFAULT_WORKSPACE": "${input:bitbucket-default-workspace}",
        "LLM_PROVIDER": "${input:llm-provider}",
        "OPENAI_API_KEY": "${input:openai-api-key}"
      }
    }
  }
}

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

bitbucket mcp server in other clients