Bitbucket MCP
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 MCPFind PRs and commits for Jira issue PROJ-123"
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
An MCP server that connects Claude Desktop and Claude Code to Bitbucket Cloud, enabling AI-assisted bug triage, impact analysis from live repository data.
Tools
Tool | Description |
| Find PRs (by title/branch) and commits (by message) linked to a Jira issue key. Searches one repo or all repos in the workspace. |
| Search PRs by keyword — returns details, description, comments, and changed files in one response |
| List modified files with line add/remove counts for a PR number or commit hash |
| Return the full unified diff for a PR or commit, truncated at a line boundary if over 50,000 characters |
| Return the full content of a file at a given branch or commit ref |
| Show commit history for a file — frequency, authors, and dates |
| Find other PRs that touched the same files as a given PR or commit |
| List all repositories in the configured workspace |
Related MCP server: Bitbucket MCP
Authentication
Bitbucket Cloud uses Basic Auth with a Bitbucket API Token
Go to Bitbucket -> Account Settings -> Security -> API Tokens
Create a Token with Scope
Quick setup (Windows)
Run the setup script — it installs dependencies, builds, prompts for credentials, and registers the server in both Claude Desktop and Claude Code:
powershell -ExecutionPolicy Bypass -File setup.ps1Credentials are written to .env.local (git-ignored). The MCP config entry stays secret-free.
Manual setup
1. Install and build
npm install
npm run build2. Create .env.local
BITBUCKET_WORKSPACE=https://bitbucket.org/your-workspace/workspace/overview/
BITBUCKET_EMAIL=you@example.com
BITBUCKET_API_TOKEN=your_app_password_here3. Register in Claude Desktop
Open %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) and add:
{
"mcpServers": {
"bitbucket": {
"command": "node",
"args": ["C:/path/to/bitbucket-mcp-server/dist/index.js"]
}
}
}Restart Claude Desktop to load the tools.
4. Register in Claude Code
claude mcp add bitbucket node "C:/path/to/bitbucket-mcp-server/dist/index.js" --scope userEnvironment variables
Variable | Required | Description |
| Yes | Full workspace URL or slug (e.g. |
| Yes | Your Atlassian account email |
| Yes | Bitbucket App Password (from account → App passwords) |
Example prompts
"Show me all PRs and commits related to PROJ-123"
"Search PRs mentioning login timeout in repo my-service"
"What files were changed in PR 42 in repo my-service?"
"Get the diff for commit a1b2c3d4 in repo my-service"
"Show me the content of src/auth.ts on the main branch"
"Who has been changing src/payment/processor.ts and how often?"
"Find other PRs that touched the same files as PR 42"
"List all repos in the workspace"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
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/SamtheIII/Bitbucket-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server