bitbucket-mcp-server
Provides tools for interacting with Bitbucket API, enabling management of repositories, pull requests, issues, pipelines, and code exploration.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bitbucket-mcp-servershow open pull requests in the api repository"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bitbucket MCP Server
A Model Context Protocol (MCP) server that provides tools for interacting with Bitbucket repositories, pull requests, issues, and more.
Safety
This server is read-heavy and non-destructive — no DELETE operations are used against the Bitbucket API, so there is no risk of accidental data loss. Write operations are limited to creating and updating resources (e.g., pull requests, comments, pipelines).
Quick Start
Using NPX (Recommended)
Run directly without cloning the repository:
BITBUCKET_USERNAME="your-email@example.com" \
BITBUCKET_API_TOKEN="your-api-token" \
npx -y -p bitbucket-mcp-server@latest bitbucket-mcpThe
-p ... bitbucket-mcpflag tellsnpxwhich bin to run. The package ships two binaries —bitbucket-mcp(the MCP server) andbb(the CLI) — so the bin name must be specified explicitly.
From Source
Install and Build:
npm install npm run buildConfigure Environment: Set the required variables (see Configuration):
export BITBUCKET_API_TOKEN="your-api-token" export BITBUCKET_USERNAME="your-email@example.com"Run the Server:
npm start
CLI
This package also ships a bb CLI alongside the MCP server. After installing globally:
npm install -g bitbucket-mcp-server
bb --helpThe CLI shares the same core logic as the MCP server, providing terminal access to repositories, pull requests, issues, pipelines, and more. See docs/cli.md for the full reference, including authentication, output formats, exit codes, and command-by-command examples.
Quick example—list open PRs in JSON:
BITBUCKET_WORKSPACE=acme bb --json pr list -r api --state OPENFeatures
This MCP server provides comprehensive tools for Bitbucket integration:
Repository Management: List and inspect repositories in a workspace.
Pull Requests: Full lifecycle support—list, get details, create, update, diff, and comment.
Issues: Query and filter repository issues.
Source Code: Explore branches and commits.
Pipelines: List, get, and trigger Bitbucket pipelines for CI/CD.
System & Search: Cross-resource search and health monitoring.
For a full list of available tools and their parameters, see the Tool Reference.
Available Tools
Repository & code
repositories— List repositories in a workspace, or fetch details for a single repository whenrepo_slugis provided.commits— List recent commits, or fetch a single commit whencommit_hashis provided.list-branches— List branches for a repository.search— Full-text search across a repository.
Pull requests
pull-requests— List PRs, or fetch a single PR whenpr_idis provided.create-pull-request— Create a new pull request.update-pr-description— Update an existing PR's description.get-pr-diff— Fetch the diff for a PR.
PR comments
pr-comments— List PR comments, or fetch a single comment whencomment_idis provided.create-pr-comment— Add a comment (or inline comment, or reply) to a PR.
Issues
list-issues— List issues for a repository.
Pipelines
pipelines— List pipelines, or fetch a single pipeline whenpipeline_uuidis provided.trigger-pipeline— Trigger a new pipeline run.pipeline-steps— Pipeline step operations. Useaction: "list" | "get" | "log"to select behavior;step_uuidis required forgetandlog.
System
health-check— Server health status.get-metrics— Request metrics.
Migrating from v1.x to v2.0
v2.0 consolidates 24 tools into 16. Update tool names and parameters as follows:
Old (v1.x) | New (v2.0) | Parameter changes |
|
| Same parameters; |
|
| Pass |
|
| Same parameters; |
|
| Pass |
|
|
|
|
|
|
|
| Same parameters; |
|
| Pass |
|
| Same parameters; |
|
| Pass |
|
| Add |
|
| Add |
|
| Add |
All other tools retain their v1.x names and parameters.
Installation
Clone or download this repository.
Install dependencies:
npm installBuild the project:
npm run build
Configuration
The server is configured via environment variables. For detailed setup instructions and client-specific examples (Claude Desktop, etc.), please refer to the Configuration Guide.
Essential Variables
Variable | Description |
| (Required) Your User API token or Workspace/Project token |
| (Required for User API tokens) Your Atlassian account email |
| Default workspace used when the parameter is omitted |
Note: If you are using a Workspace or Project access token, you can omit
BITBUCKET_USERNAME.
Advanced Settings
Additional configuration options for timeouts, caching, metrics, and retries are documented in CONFIGURATION.md.
MCP Client Configuration
Add this server to your MCP client configuration (e.g., claude_desktop_config.json). See CONFIGURATION.md for full examples for macOS, Linux, and Windows.
Using NPX (recommended):
{
"mcpServers": {
"bitbucket-mcp": {
"command": "npx",
"args": ["-y", "-p", "bitbucket-mcp-server@latest", "bitbucket-mcp"],
"env": {
"BITBUCKET_USERNAME": "your-email@example.com",
"BITBUCKET_API_TOKEN": "your-api-token",
"BITBUCKET_WORKSPACE": "your-workspace"
}
}
}
}Using local build:
{
"mcpServers": {
"bitbucket-mcp": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/bitbucket_mcp/build/index.js"],
"env": {
"BITBUCKET_USERNAME": "your-email@example.com",
"BITBUCKET_API_TOKEN": "your-api-token",
"BITBUCKET_WORKSPACE": "your-workspace"
}
}
}
}Usage Examples
List Repositories
List all repositories in the 'myworkspace' workspaceCreate Pull Request
Create a pull request from feature/my-feature to main in myworkspace/myrepo with title "My Feature PR"Search Workspace
Search for "authentication" across all repositories and pull requestsSee more examples for PRs, issues, and commits in the Tool Reference.
Prerequisites
Node.js 20.19.x or >= 22.12.0
npm (included with Node.js)
Development
Build:
npm run buildDev Mode:
npm run devTest:
npm testCoverage:
npm run test:coverage
Troubleshooting
Refer to the Troubleshooting section in CONFIGURATION.md for common issues related to authentication, permissions, and rate limiting.
License
ISC
Contributing
Contributions are welcome! Please feel free to submit issues and pull requests.
Links
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WilliamLINWEN/bitbucket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server