Transform how you work with Bitbucket by connecting Claude, Cursor AI, and other AI assistants directly to your repositories, pull requests, and code. Get instant insights, automate code reviews, and streamline your development workflow.
- Ask AI about your code: "What's the latest commit in my main repository?"
- Get PR insights: "Show me all open pull requests that need review"
- Search your codebase: "Find all JavaScript files that use the authentication function"
- Review code changes: "Compare the differences between my feature branch and main"
- Manage pull requests: "Create a PR for my new-feature branch"
- Automate workflows: "Add a comment to PR #123 with the test results"
- Developers who want AI assistance with code reviews and repository management
- Team Leads needing quick insights into project status and pull request activity
- DevOps Engineers automating repository workflows and branch management
- Anyone who wants to interact with Bitbucket using natural language
Get up and running in 2 minutes:
IMPORTANT: Bitbucket App Passwords are being deprecated and will be removed by June 2026. We recommend using Scoped API Tokens for new setups.
Bitbucket is deprecating app passwords. Use the new scoped API tokens instead:
- Go to Atlassian API Tokens
- Click "Create API token with scopes"
- Select "Bitbucket" as the product
- Choose the appropriate scopes:
- For read-only access:
repository,workspace - For full functionality:
repository,workspace,pullrequest
- For read-only access:
- Copy the generated token (starts with
ATATT) - Use with your Atlassian email as the username
Generate a Bitbucket App Password (legacy method):
- Go to Bitbucket App Passwords
- Click "Create app password"
- Give it a name like "AI Assistant"
- Select these permissions:
- Workspaces: Read
- Repositories: Read (and Write if you want AI to create PRs/comments)
- Pull Requests: Read (and Write for PR management)
# Set your credentials (choose one method)
# Method 1: Scoped API Token (recommended - future-proof)
export ATLASSIAN_USER_EMAIL="your.email@company.com"
export ATLASSIAN_API_TOKEN="your_scoped_api_token" # Token starting with ATATT
# OR Method 2: Legacy App Password (will be deprecated June 2026)
export ATLASSIAN_BITBUCKET_USERNAME="your_username"
export ATLASSIAN_BITBUCKET_APP_PASSWORD="your_app_password"
# List your workspaces
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/workspaces"
# List repositories in a workspace
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/repositories/your-workspace"
# Get pull requests for a repository
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/repositories/your-workspace/your-repo/pullrequests"
# Get repository details with JMESPath filtering
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/repositories/your-workspace/your-repo" --jq "{name: name, language: language}"Add this to your Claude configuration file (~/.claude/claude_desktop_config.json):
Option 1: Scoped API Token (recommended - future-proof)
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-bitbucket"],
"env": {
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_scoped_api_token"
}
}
}
}Option 2: Legacy App Password (will be deprecated June 2026)
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-bitbucket"],
"env": {
"ATLASSIAN_BITBUCKET_USERNAME": "your_username",
"ATLASSIAN_BITBUCKET_APP_PASSWORD": "your_app_password"
}
}
}
}Restart Claude Desktop, and you'll see the bitbucket server in the status bar.
Most AI assistants support MCP. Install the server globally:
npm install -g @aashari/mcp-server-atlassian-bitbucketThen configure your AI assistant to use the MCP server with STDIO transport.
Create ~/.mcp/configs.json for system-wide configuration:
Option 1: Scoped API Token (recommended - future-proof)
{
"bitbucket": {
"environments": {
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_scoped_api_token",
"BITBUCKET_DEFAULT_WORKSPACE": "your_main_workspace"
}
}
}Option 2: Legacy App Password (will be deprecated June 2026)
{
"bitbucket": {
"environments": {
"ATLASSIAN_BITBUCKET_USERNAME": "your_username",
"ATLASSIAN_BITBUCKET_APP_PASSWORD": "your_app_password",
"BITBUCKET_DEFAULT_WORKSPACE": "your_main_workspace"
}
}
}Alternative config keys: The system also accepts "atlassian-bitbucket", "@aashari/mcp-server-atlassian-bitbucket", or "mcp-server-atlassian-bitbucket" instead of "bitbucket".
This MCP server provides 6 generic tools that can access any Bitbucket API endpoint:
| Tool | Description |
|---|---|
bb_get |
GET any Bitbucket API endpoint (read data) |
bb_post |
POST to any endpoint (create resources) |
bb_put |
PUT to any endpoint (replace resources) |
bb_patch |
PATCH any endpoint (partial updates) |
bb_delete |
DELETE any endpoint (remove resources) |
bb_clone |
Clone a repository locally |
Workspaces & Repositories:
/workspaces- List all workspaces/repositories/{workspace}- List repos in workspace/repositories/{workspace}/{repo}- Get repo details/repositories/{workspace}/{repo}/refs/branches- List branches/repositories/{workspace}/{repo}/commits- List commits/repositories/{workspace}/{repo}/src/{commit}/{filepath}- Get file content
Pull Requests:
/repositories/{workspace}/{repo}/pullrequests- List PRs/repositories/{workspace}/{repo}/pullrequests/{id}- Get PR details/repositories/{workspace}/{repo}/pullrequests/{id}/diff- Get PR diff/repositories/{workspace}/{repo}/pullrequests/{id}/comments- List PR comments/repositories/{workspace}/{repo}/pullrequests/{id}/approve- Approve PR (POST)/repositories/{workspace}/{repo}/pullrequests/{id}/merge- Merge PR (POST)
Comparisons:
/repositories/{workspace}/{repo}/diff/{source}..{destination}- Compare branches/commits
All tools support optional JMESPath (jq) filtering to extract specific data:
# Get just repository names
npx -y @aashari/mcp-server-atlassian-bitbucket get \
--path "/repositories/myworkspace" \
--jq "values[].name"
# Get PR titles and states
npx -y @aashari/mcp-server-atlassian-bitbucket get \
--path "/repositories/myworkspace/myrepo/pullrequests" \
--jq "values[].{title: title, state: state}"Ask your AI assistant:
- "List all repositories in my main workspace"
- "Show me details about the backend-api repository"
- "What's the commit history for the feature-auth branch?"
- "Get the content of src/config.js from the main branch"
Ask your AI assistant:
- "Show me all open pull requests that need review"
- "Get details about pull request #42 including the code changes"
- "Create a pull request from feature-login to main branch"
- "Add a comment to PR #15 saying the tests passed"
- "Approve pull request #33"
Ask your AI assistant:
- "Compare my feature branch with the main branch"
- "List all branches in the user-service repository"
- "Show me the differences between commits abc123 and def456"
The CLI mirrors the MCP tools for direct terminal access:
# GET request
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/workspaces"
# POST request (create a PR)
npx -y @aashari/mcp-server-atlassian-bitbucket post \
--path "/repositories/myworkspace/myrepo/pullrequests" \
--body '{"title": "My PR", "source": {"branch": {"name": "feature"}}, "destination": {"branch": {"name": "main"}}}'
# PUT request (update resource)
npx -y @aashari/mcp-server-atlassian-bitbucket put \
--path "/repositories/myworkspace/myrepo" \
--body '{"description": "Updated description"}'
# PATCH request (partial update)
npx -y @aashari/mcp-server-atlassian-bitbucket patch \
--path "/repositories/myworkspace/myrepo/pullrequests/123" \
--body '{"title": "Updated PR title"}'
# DELETE request
npx -y @aashari/mcp-server-atlassian-bitbucket delete \
--path "/repositories/myworkspace/myrepo/refs/branches/old-branch"
# Clone repository
npx -y @aashari/mcp-server-atlassian-bitbucket clone \
--workspace myworkspace \
--repo myrepo \
--target-dir ./my-local-clone-
Choose the right authentication method:
- Standard Atlassian method: Use your Atlassian account email + API token (works with any Atlassian service)
- Bitbucket-specific method: Use your Bitbucket username + App password (Bitbucket only)
-
For Scoped API Tokens (recommended):
- Go to Atlassian API Tokens
- Make sure your token is still active and has the right scopes
- Required scopes:
repository,workspace(addpullrequestfor PR management)
-
For Bitbucket App Passwords (legacy):
- Go to Bitbucket App Passwords
- Make sure your app password has the right permissions
-
Verify your credentials:
npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/workspaces"
-
Check the API path:
- Paths are case-sensitive
- Use workspace slug (from URL), not display name
- Example: If your repo URL is
https://bitbucket.org/myteam/my-repo, usemyteamandmy-repo
-
Verify the resource exists:
# List workspaces to find the correct slug npx -y @aashari/mcp-server-atlassian-bitbucket get --path "/workspaces"
- Restart Claude Desktop after updating the config file
- Verify config file location:
- macOS:
~/.claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
If you're still having issues:
- Run a simple test command to verify everything works
- Check the GitHub Issues for similar problems
- Create a new issue with your error message and setup details
For Scoped API Tokens (recommended):
- Required scopes:
repository,workspace - Add
pullrequestfor PR management
For Bitbucket App Passwords (legacy):
- For read-only access: Workspaces: Read, Repositories: Read, Pull Requests: Read
- For full functionality: Add "Write" permissions for Repositories and Pull Requests
Yes! This works with both public and private repositories. You just need the appropriate permissions through your credentials.
Any AI assistant that supports the Model Context Protocol (MCP):
- Claude Desktop
- Cursor AI
- Continue.dev
- Many others
Yes! This tool:
- Runs entirely on your local machine
- Uses your own Bitbucket credentials
- Never sends your data to third parties
- Only accesses what you give it permission to access
Version 2.0 replaces 20+ specific tools with 6 generic HTTP method tools. If you're upgrading from v1.x:
Before (v1.x):
bb_ls_workspaces, bb_get_workspace, bb_ls_repos, bb_get_repo,
bb_list_branches, bb_get_commit_history, bb_get_file,
bb_ls_prs, bb_get_pr, bb_add_pr, bb_approve_pr, ...
After (v2.0):
bb_get, bb_post, bb_put, bb_patch, bb_delete, bb_clone
Migration examples:
bb_ls_workspaces→bb_getwith path/workspacesbb_ls_repos→bb_getwith path/repositories/{workspace}bb_get_pr→bb_getwith path/repositories/{workspace}/{repo}/pullrequests/{id}bb_add_pr→bb_postwith path/repositories/{workspace}/{repo}/pullrequestsbb_approve_pr→bb_postwith path/repositories/{workspace}/{repo}/pullrequests/{id}/approve
Need help? Here's how to get assistance:
- Check the troubleshooting section above - most common issues are covered there
- Visit our GitHub repository for documentation and examples: github.com/aashari/mcp-server-atlassian-bitbucket
- Report issues at GitHub Issues
- Start a discussion for feature requests or general questions
Made with care for developers who want to bring AI into their Bitbucket workflow.