npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@shibainu16/bitbucket-dc-mcp

v1.3.0

Published

HTTP MCP server for Bitbucket Data Center REST API

Downloads

372

Readme

Bitbucket DC MCP Server

npm version CI License: MIT

A Model Context Protocol (MCP) server that exposes Bitbucket Data Center REST API v1.0 as tools for AI assistants.

Overview

This server lets MCP-compatible clients (Claude Desktop, VS Code, IDEs, custom apps) interact with a Bitbucket Data Center instance through 55 tools covering:

  • Projects — list, get, create, update
  • Repositories — list, get, create, fork, default branch
  • Pull Requests — CRUD, merge, decline, reopen, approve, reviewers, can-merge
  • PR Comments — list, add, get, update, delete (inline + general)
  • PR Diff & Changes — diffs, file changes, conflict markers
  • PR Activity — activity feed, participants, watchers
  • PR Tasks — blocker comment tasks
  • Branches & Tags — list, create, delete
  • Commits — list, get, changes, diff
  • Files — browse, read, edit, recursive listing
  • Build Status — build statuses per commit, build statistics
graph LR
    A[AI Client] <-->|MCP| B[bitbucket-dc-mcp]
    B <-->|REST API v1.0| C[Bitbucket Data Center]

Example Prompts

Once connected, try asking your AI assistant:

  • "List all repositories in the PROJ project"
  • "Show me open pull requests in repo X"
  • "What changed in PR #42? Summarize the diff"
  • "Create a branch called feature/login from main in PROJ/my-repo"
  • "Add a comment on PR #15 suggesting a fix for the null check on line 23"
  • "What's the build status for the latest commit on main?"
  • "Show me the last 10 commits on the develop branch"
  • "Read the contents of src/index.ts from the main branch"
  • "Are there any unresolved tasks blocking PR #8 from merging?"
  • "Who approved PR #21 and what comments were left?"

Installation

Global install

npm install -g @shibainu16/bitbucket-dc-mcp

Using npx (no install required)

BITBUCKET_URL=https://bitbucket.example.com \
BITBUCKET_TOKEN=your-token \
MCP_TRANSPORT=stdio \
npx @shibainu16/bitbucket-dc-mcp

Prerequisites

  • Node.js >= 22
  • A Bitbucket Data Center instance with API access
  • A personal access token or username/password credentials

Quick Start

1. Configure environment

Create a .env file (or export variables in your shell):

# Required — your Bitbucket DC base URL
BITBUCKET_URL=https://bitbucket.example.com

# Authentication (choose one)
BITBUCKET_TOKEN=your-personal-access-token
# OR
BITBUCKET_USERNAME=your-username
BITBUCKET_PASSWORD=your-password

# Optional
BITBUCKET_DEFAULT_PROJECT=MYPROJ
BITBUCKET_ENABLE_DANGEROUS=false
MCP_TRANSPORT=http
PORT=3000

2. Run

# If installed globally
bitbucket-dc-mcp

# Or via npx
npx @shibainu16/bitbucket-dc-mcp

The server starts in HTTP mode by default at http://localhost:3000/mcp.

Configuration

Environment Variables

| Variable | Required | Description | Default | |----------|----------|-------------|---------| | BITBUCKET_URL | Yes | Bitbucket DC base URL (auto-appends /rest/api/1.0) | — | | BITBUCKET_TOKEN | Yes* | Personal access token (Bearer auth) | — | | BITBUCKET_USERNAME | Yes* | Username for basic auth | — | | BITBUCKET_PASSWORD | Yes* | Password for basic auth | — | | BITBUCKET_DEFAULT_PROJECT | No | Default project key for tools that accept projectKey | — | | BITBUCKET_ENABLE_DANGEROUS | No | Enable destructive operations (deletePRComment, deleteBranch) | false | | MCP_TRANSPORT | No | Transport mode: stdio or http | http | | PORT | No | HTTP server port | 3000 | | CORS_ORIGIN | No | CORS allowed origins | * |

* Either BITBUCKET_TOKEN or both BITBUCKET_USERNAME + BITBUCKET_PASSWORD are required.

Transport Modes

HTTP Mode (Default)

Streamable HTTP transport for web deployments and remote access:

MCP_TRANSPORT=http bitbucket-dc-mcp

Endpoints:

  • GET /mcp — SSE stream for server-initiated messages
  • POST /mcp — JSON-RPC requests
  • DELETE /mcp — Session termination
  • GET /health — Health check

Stdio Mode

Traditional stdio transport for local clients like Claude Desktop:

MCP_TRANSPORT=stdio bitbucket-dc-mcp

Client Integration

VS Code / GitHub Copilot

Add to your VS Code settings (settings.json) or workspace .vscode/mcp.json:

{
  "servers": {
    "bitbucket-dc-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@shibainu16/bitbucket-dc-mcp"],
      "env": {
        "BITBUCKET_URL": "https://bitbucket.example.com",
        "BITBUCKET_TOKEN": "your-token",
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}

If using settings.json directly, nest it under "mcp":

{
  "mcp": {
    "servers": {
      "bitbucket-dc-mcp": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "@shibainu16/bitbucket-dc-mcp"],
        "env": {
          "BITBUCKET_URL": "https://bitbucket.example.com",
          "BITBUCKET_TOKEN": "your-token",
          "MCP_TRANSPORT": "stdio"
        }
      }
    }
  }
}

Claude Code

Add to your project's .mcp.json, or configure via the CLI:

claude mcp add bitbucket-dc-mcp \
  -e BITBUCKET_URL=https://bitbucket.example.com \
  -e BITBUCKET_TOKEN=your-token \
  -e MCP_TRANSPORT=stdio \
  -- npx -y @shibainu16/bitbucket-dc-mcp

Or manually create/edit .mcp.json in your project root:

{
  "mcpServers": {
    "bitbucket-dc-mcp": {
      "command": "npx",
      "args": ["-y", "@shibainu16/bitbucket-dc-mcp"],
      "env": {
        "BITBUCKET_URL": "https://bitbucket.example.com",
        "BITBUCKET_TOKEN": "your-token",
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}

Development

git clone https://github.com/lvluu/bitbucket-dc-mcp.git
cd bitbucket-dc-mcp
npm install
npm run build

See CLAUDE.md for the full list of commands, architecture details, and contribution guidance.

Troubleshooting

| Issue | Solution | |-------|----------| | BITBUCKET_URL is required | Set the BITBUCKET_URL environment variable or add it to .env | | Cannot find module errors | Run npm run build before starting the server | | 401 Unauthorized | Check your token or username/password credentials | | deleteBranch is disabled | Set BITBUCKET_ENABLE_DANGEROUS=true to enable destructive operations | | Tools not loading | Verify module has a valid default export matching RegisterableModule |

License

MIT — see LICENSE.

Resources