B

Bitbucket

Integrates with Bitbucket's REST APIs to enable repository management, pull request handling, and workspace operations with TypeScript-based error handling and

Bitbucket·No reviews yet
Repo
Share:

About

Integrates with Bitbucket's REST APIs to enable repository management, pull request handling, and workspace operations with TypeScript-based error handling and pagination support

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Bitbucket.

What is the Bitbucket Model Context Protocol (MCP) server used for?
The Bitbucket MCP server integrates with Bitbucket's REST APIs. It enables repository management, pull request handling, and workspace operations. This integration is useful for automating tasks or extending Bitbucket's functionality within an MCP client.
How can I install and configure the Bitbucket MCP with a client like Cline?
To install and configure the Bitbucket MCP, you typically add its repository URL to your Cline client's MCP settings. The server uses stdio for transport, simplifying local integration. Specific configuration steps may vary depending on your Cline version and operating system.
Does the Bitbucket MCP server require an API key or other credentials?
The Bitbucket MCP server currently specifies 'none' for authentication type. This means it does not intrinsically require an API key or other credentials for its operation. However, access to Bitbucket APIs may still necessitate appropriate user permissions or Bitbucket's own authentication methods.
What are the key capabilities exposed by the Bitbucket MCP?
This MCP exposes capabilities for repository management, including creation and modification. It also handles pull request operations and general workspace management. It is designed with TypeScript-based error handling and pagination support for robust interactions.
Is there a cost associated with using the Bitbucket MCP server?
The Bitbucket MCP server itself is open source and available via its GitHub repository. Any costs would be associated with your Bitbucket service usage, which depends on your Bitbucket plan and consumption. Using the MCP server does not incur additional direct fees.
What is a known limitation or prerequisite for the Bitbucket MCP?
A key prerequisite is familiarity with Bitbucket's REST API concepts to fully leverage the MCP's capabilities. While it simplifies interaction, understanding underlying API structures is beneficial. A potential limitation is that its features are strictly bound by the Bitbucket REST API's current scope.

Install Bitbucket

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "bitbucket": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitbucket"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "bitbucket": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitbucket"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "bitbucket": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitbucket"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.