Bitbucket MCP
Provides tools for managing pull requests, branches, and repositories in Bitbucket Cloud via its REST API, including creating, updating, merging, declining PRs, commenting, reviewing, listing branches, and managing default reviewers.
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 MCPwhat are my open pull requests?"
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
An MCP server for Bitbucket Cloud. Use it from any MCP-capable client (Cursor, Claude Desktop, Codex, and others) to manage pull requests, branches, and repositories in natural language.
It targets the Bitbucket Cloud REST API at https://api.bitbucket.org/2.0 by default. You can point it at a Bitbucket Server / Data Center instance with BITBUCKET_BASE_URL, but only endpoints that match the Cloud API shape are guaranteed to work.
Prerequisites
Node.js 24 or newer
A Bitbucket Cloud account with access to the workspace you want to use
Related MCP server: Bitbucket MCP Server
Installation
Run the published package directly with npx (recommended — no install step):
npx -y @inconcept-labs/bitbucket-mcpOr install globally and run the bitbucket-mcp binary:
npm install -g @inconcept-labs/bitbucket-mcp
bitbucket-mcpThe server speaks MCP over stdio and is meant to be launched by an MCP client, not run by hand.
Setup
1. Create an Atlassian API token
This server authenticates with a scoped Atlassian API token. (Bitbucket Cloud app passwords are deprecated — new ones can no longer be created since 2025-09-09, and any remaining ones stop working on 2026-06-09.)
Sign in to Bitbucket, click your avatar (top-right) → Account settings.
Open the Security tab → Create and manage API tokens → Create API token with scopes.
Give the token a name and an expiry date, then select Bitbucket as the app.
Select these scopes:
read:repository:bitbucketwrite:repository:bitbucketread:pullrequest:bitbucketwrite:pullrequest:bitbucketadmin:repository:bitbucket
Click Create token and copy the value immediately — Atlassian only displays it once.
2. Find your workspace slug and Atlassian email
Workspace slug: the path segment in your Bitbucket URL — e.g. for
https://bitbucket.org/acme-inc/some-repo, the slug isacme-inc. Use the slug, not the workspace display name.Atlassian email: the email address you sign in to Atlassian with. API tokens authenticate as
email:token— your Bitbucket username will not work.
3. Environment variables
Variable | Required | Description |
| Yes | Your Atlassian account email (used as the Basic-auth username paired with the API token). |
| Yes | Your Atlassian API token from step 1. The variable is named |
| Yes | Workspace slug from your Bitbucket URL. |
| No | API base URL. Defaults to |
| No | Set to |
4. MCP client configuration
Add a server entry that runs the package with npx and passes the variables above. Example:
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "@inconcept-labs/bitbucket-mcp"],
"env": {
"BITBUCKET_USERNAME": "you@example.com",
"BITBUCKET_APP_PASSWORD": "your_atlassian_api_token",
"BITBUCKET_WORKSPACE": "your_workspace_slug"
}
}
}
}Where this file lives
Cursor:
~/.cursor/mcp.json, or Cursor → Settings → MCPClaude Desktop (macOS):
~/Library/Application Support/Claude/claude_desktop_config.jsonClaude Desktop (Windows):
%APPDATA%\Claude\claude_desktop_config.json
After saving, restart the MCP client so it picks up the new server.
Available tools
Repositories
Tool | Description |
| List repos in the workspace (supports search & pagination). |
Pull requests
Tool | Description |
| List PRs filtered by state ( |
| Full PR details including participants and reviewers. |
| Open a new PR with optional reviewers. |
| Update title, description, or reviewers. |
| Merge using |
| Decline a PR with an optional message. |
| Post a Markdown comment on a PR. |
| Fetch the unified diff (truncated for safety). |
| List all comments on a PR. |
| Get a specific comment. |
| Update a comment. |
| Delete a comment (requires |
| Resolve a comment thread. |
| Reopen a resolved comment thread. |
| Approve a PR. |
| Remove your approval. |
| Request changes on a PR. |
| List commit / build statuses for a PR. |
| List default reviewers (auto-added to new PRs). |
| Get a specific default reviewer. |
| Add a user as default reviewer. |
| Remove a user from default reviewers. |
Branches
Tool | Description |
| List branches with optional name search. |
| Delete a branch (requires |
Example prompts
"List all open PRs in the backend repo"
"Create a PR from feature/auth to main: 'Add OAuth login'"
"Show me the diff for PR #42"
"Merge PR #42 using squash"
"Decline PR #15 with message: not needed anymore"
"Add a comment to PR #8: 'LGTM!'"
Troubleshooting
Configuration erroron startup — One or more required env vars are missing or empty. SetBITBUCKET_USERNAME,BITBUCKET_APP_PASSWORD, andBITBUCKET_WORKSPACE, then restart the MCP client.401 Unauthorized— Most often one of:BITBUCKET_USERNAMEis your Bitbucket username instead of your Atlassian email — API tokens require the email.The API token is wrong, expired, or was created without the scopes listed above.
You're still using a legacy app password — create an API token instead (app passwords are being phased out).
403 Forbidden— The token authenticates but is missing a scope for the tool you ran. Re-create the token and add the missing scope (e.g.write:pullrequest:bitbucketfor merge/approve,write:repository:bitbucketfordelete_branch).404 Not Foundfor repos —BITBUCKET_WORKSPACEis wrong. Use the slug from the URL (e.g.acme-inc), not the workspace display name.Destructive tool not found —
delete_branchanddelete_pr_commentare not registered unlessBITBUCKET_MCP_ALLOW_DESTRUCTIVE_TOOLSis set to a truthy value. Set it and restart the client.
Contributing
For development, project layout, testing, and release automation, see CONTRIBUTING.md.
Links
License
MIT
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/inconcept/bitbucket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server