MCP Catalogs
首页

mcp-git-ingest vs bitbucket-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-git-ingest
by adhikasp
bitbucket-mcp
by MatanYemini
Stars★ 306★ 136
30天用量
综合分4448
官方
分类
GitHub 集成开发者工具本地文件系统
开发者工具效率工具GitHub 集成
实现语言PythonJavaScript
最近提交16 个月前本月

mcp-git-ingest · 概述

一个MCP服务器,用于读取GitHub仓库结构和重要文件。

bitbucket-mcp · 概述

Bitbucket MCP 服务器让 AI 助手可以与 Bitbucket 代码库和拉取请求交互。

mcp-git-ingest · 使用场景

  • 无需本地克隆即可分析GitHub仓库
  • 在深入研究实现细节前理解代码库结构
  • 从仓库中提取特定文件用于文档或分析目的

bitbucket-mcp · 使用场景

  • 自动化 Bitbucket 仓库的 PR 审查和批准流程
  • 将 Bitbucket 仓库信息集成到 AI 助手的工作流程中
  • 创建监控 Bitbucket 拉取请求活动的 AI 驱动仪表板

mcp-git-ingest · 安装

安装

  1. 使用uvx安装:
uvx --from git+https://github.com/adhikasp/mcp-git-ingest mcp-git-ingest
  1. 在Claude Desktop中配置:
{
  "mcpServers": {
    "mcp-git-ingest": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/adhikasp/mcp-git-ingest", "mcp-git-ingest"]
    }
  }
}

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@latest

Claude 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"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。