Token导航 LogoToken导航TokenDH.com
MCP Bitbucket Python logo
开发工具未说明官方级别未说明来源级核验

MCP Bitbucket Python

MCP Server

Bitbucket MCP Server Implementation in Python

工具数

10

提示词数

0

GitHub Stars

5

资源数

0
版本控制Python仓库管理

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

Kallows

提供方

Kallows

最后核验

2026/5/18 02:15

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

MCP比特桶Python🦊

用于Bitbucket集成的MCP服务器的Python实现。MCP(模型上下文协议)为AI应用程序提供安全的本地工具访问。服务器与您的AI应用程序在同一台机器上本地运行。

安装

# Install the server locally
git clone https://github.com/kallows/mcp-bitbucket.git

可用工具

此MCP服务器提供以下Bitbucket集成工具:

  • bb_create_repository:创建新的Bitbucket存储库

- 必填项:名称(存储库名称) - 可选:描述、工作区(默认为kallows)、project_key、is_private(默认:true)、has_issues(默认:true)

  • bb_create_branch:在存储库中创建新分支

- 必填项:repo_slug,分支(新分支的名称) - 可选:工作区(默认为kallows),start_point(默认为main)

  • bb_delete_repository:删除Bitbucket存储库

- 必需:repo_slug - 可选:工作区(默认为kallows)

  • bb_read_file:从存储库读取文件

- 必需:repo_slug,路径(存储库中的文件路径) - 可选:工作区(默认为kallows)、分支(默认为main/master)

  • bb_write_file:在存储库中创建或更新文件

- 必填项:repo_slug、路径、内容 - 可选:工作区(默认为kallows)、分支(默认为main)、消息(commit message)

  • bb_create_issue:在存储库中创建问题

- 必填项:repo_slug、标题、内容 - 可选:工作区(默认为kallows)、类型(bug/增强/建议/任务)、优先级(琐碎/次要/主要/关键/阻止)

  • bb_delete_issue:从存储库中删除问题

- 必填项:repo_slug、issue_id - 可选:工作区(默认为kallows)

  • bb_search_repositories:使用查询语法搜索Bitbucket存储库

- 必填项:查询(例如,“name~”test“”或“project.key=”PROJ“”) - 可选:工作区(默认为kallows)、页面(默认:1)、页面长度(默认:10,最大:100)

  • bb_delete_file:从存储库中删除文件

- 必需:repo_slug,路径 - 可选:工作区(默认为kallows)、分支(默认为main)、消息(commit message)

  • bb_create_pull_request:创建pull请求

- 必填项:repo_slug、title、source_branch - 可选:工作区(默认为kallows)、destination_branch(默认为main)、描述、close_source_brance(默认为true)

环境设置

服务器要求将Bitbucket凭据设置为环境变量:

export BITBUCKET_USERNAME="your-username"
export BITBUCKET_APP_PASSWORD="your-app-password"

项目结构

mcp-bitbucket/
├── README.md
├── pyproject.toml
├── src/
│   └── bitbucket_api/
│       ├── __init__.py
│       └── server.py
└── tests/
    ├── __init__.py
    ├── test_bb_api.py
    └── test_bb_integration.py

目录标签

目录标签

版本控制Python仓库管理developer-toolsmcp-bitbucketbitbucket-integrationpython-serverBitbucket集成本地部署AI工具

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

部署方式(deploymentType,部署类型)

local-only

工具数量(toolCount,工具数)

10

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明nonelocal-only

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP