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

@tarasrushchak/bitbucket-server-mcp

v1.1.1

Published

MCP Server for Bitbucket Server/Data Center — PR management, repositories, code review

Readme

@tarasrushchak/bitbucket-server-mcp

MCP (Model Context Protocol) server for Bitbucket Server / Data Center (formerly Stash).

Note: This package is for Bitbucket Server/Data Center, NOT Bitbucket Cloud. The APIs are different.

Setup

Claude Code

claude mcp add bitbucket-server -e BITBUCKET_URL=https://your-bitbucket.com -e BITBUCKET_TOKEN=your-token -- npx -y @tarasrushchak/bitbucket-server-mcp

Manual config (~/.claude.json or ~/.claude/mcp.json)

{
  "mcpServers": {
    "bitbucket-server": {
      "command": "npx",
      "args": ["-y", "@tarasrushchak/bitbucket-server-mcp"],
      "env": {
        "BITBUCKET_URL": "https://your-bitbucket-server.com",
        "BITBUCKET_TOKEN": "your-personal-access-token"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | BITBUCKET_URL | Yes | Base URL of your Bitbucket Server instance | | BITBUCKET_TOKEN | Yes | Personal access token (HTTP access tokens) |

Generating a token

  1. Go to your Bitbucket Server profile: Manage account > HTTP access tokens
  2. Create a token with Repository read/write and Pull request read/write permissions

Available Tools

Pull Requests

| Tool | Description | |------|-------------| | create_pull_request | Create a new pull request | | get_pull_request | Get details of a specific PR | | get_pull_request_diff | Get the diff/changes of a PR | | list_pull_requests | List PRs in a repository (filter by state) | | approve_pull_request | Approve a PR | | decline_pull_request | Decline a PR | | merge_pull_request | Merge a PR |

Comments

| Tool | Description | |------|-------------| | add_comment | Add a general comment to a PR | | add_inline_comment | Add an inline comment on a specific file/line | | get_pull_request_comments | Get all comments on a PR |

Repositories

| Tool | Description | |------|-------------| | list_repositories | List repositories in a project | | get_repository | Get repository details | | list_branches | List branches (with optional filter) |

Projects

| Tool | Description | |------|-------------| | list_projects | List all projects | | get_project | Get project details |

Usage Examples

Once configured, you can use natural language in Claude Code:

> Create a PR from feature/my-branch to main in PROJECT/my-repo
> Review PR #42 in PROJECT/repo-name
> Approve PR #100
> Add a comment to PR #55 with my review notes

License

MIT