octocode-mcp vs bitbucket-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
octocode-mcp by bgauryy | bitbucket-mcp by MatanYemini | |
|---|---|---|
| Stars | ★ 832 | ★ 136 |
| 30天用量 | — | — |
| 综合分 | 52 | 48 |
| 官方 | — | — |
| 分类 | 开发者工具AI / LLM 工具GitHub 集成 | 开发者工具效率工具GitHub 集成 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 本月 |
octocode-mcp · 概述
MCP 服务器用于在 GitHub/GitLab 和本地仓库中进行语义代码研究,具有高级 LSP 集成。
bitbucket-mcp · 概述
Bitbucket MCP 服务器让 AI 助手可以与 Bitbucket 代码库和拉取请求交互。
octocode-mcp · 使用场景
- 跨公共和私有仓库进行代码探索和模式匹配
- 使用 AST 和依赖图进行高级代码分析和文档生成
- 使用 LSP 流跟踪在多个领域进行拉取请求审查
bitbucket-mcp · 使用场景
- 自动化 Bitbucket 仓库的 PR 审查和批准流程
- 将 Bitbucket 仓库信息集成到 AI 助手的工作流程中
- 创建监控 Bitbucket 拉取请求活动的 AI 驱动仪表板
octocode-mcp · 安装
安装
推荐方式:Octocode CLI
npx octocode-cli install手动 MCP 配置
添加到您的 MCP 配置文件中:
{
"mcpServers": {
"octocode": {
"command": "npx",
"args": ["octocode-mcp@latest"]
}
}
}bitbucket-mcp · 安装
安装
使用 NPX(推荐)
BITBUCKET_URL="https://api.bitbucket.org/2.0" \
BITBUCKET_WORKSPACE="your-workspace" \
BITBUCKET_USERNAME="your-username" \
BITBUCKET_PASSWORD="your-app-password" \
npx -y bitbucket-mcp@latestClaude Desktop 配置
{
"mcpServers": {
"bitbucket": {
"command": "npx",
"args": ["-y", "bitbucket-mcp@latest"],
"env": {
"BITBUCKET_URL": "https://api.bitbucket.org/2.0",
"BITBUCKET_WORKSPACE": "your-workspace",
"BITBUCKET_USERNAME": "your-username",
"BITBUCKET_PASSWORD": "your-app-password"
}
}
}
}