1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36id = "bitbucket"
name = "Bitbucket"
description = "Access Bitbucket repositories, pull requests, and pipelines through the MCP server"
category = "devtools"
icon = "๐ชฃ"
tags = ["git", "vcs", "code", "pull-requests", "ci", "atlassian"]
[transport]
type = "stdio"
command = "npx"
args = ["@modelcontextprotocol/server-bitbucket"]
[[required_env]]
name = "BITBUCKET_USERNAME"
label = "Bitbucket Username"
help = "Your Bitbucket Cloud username (not email)"
is_secret = false
get_url = "https://bitbucket.org/account/settings/"
[[required_env]]
name = "BITBUCKET_APP_PASSWORD"
label = "Bitbucket App Password"
help = "An app password with repository and pull request permissions"
is_secret = true
get_url = "https://bitbucket.org/account/settings/app-passwords/"
[health_check]
interval_secs = 60
unhealthy_threshold = 3
setup_instructions = """
1. Go to Bitbucket > Personal Settings > App passwords (https://bitbucket.org/account/settings/app-passwords/).
2. Create an app password with 'Repositories: Read/Write' and 'Pull requests: Read/Write' permissions.
3. Enter your Bitbucket username and paste the app password into the fields above.
"""