atlassian dc mcp bitbucket for VS Code
io.github.b1ff/atlassian-dc-mcp-bitbucket
MCP server for Atlassian Bitbucket Data Center - interact with repositories and code
client:VS Code
transport:stdio
runtime:npm
Install atlassian dc mcp bitbucket in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "atlassian-dc-mcp-config-file",
"description": "ATLASSIAN_DC_MCP_CONFIG_FILE",
"password": true
},
{
"type": "promptString",
"id": "bitbucket-host",
"description": "BITBUCKET_HOST",
"password": true
},
{
"type": "promptString",
"id": "bitbucket-api-base-path",
"description": "BITBUCKET_API_BASE_PATH",
"password": true
},
{
"type": "promptString",
"id": "bitbucket-api-token",
"description": "BITBUCKET_API_TOKEN",
"password": true
}
],
"servers": {
"atlassian-dc-mcp-bitbucket": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@atlassian-dc-mcp/bitbucket"
],
"env": {
"ATLASSIAN_DC_MCP_CONFIG_FILE": "${input:atlassian-dc-mcp-config-file}",
"BITBUCKET_HOST": "${input:bitbucket-host}",
"BITBUCKET_API_BASE_PATH": "${input:bitbucket-api-base-path}",
"BITBUCKET_API_TOKEN": "${input:bitbucket-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