MCP Catalogs
首页

everything vs Gitingest-MCP

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

everything
by modelcontextprotocol
Gitingest-MCP
by puravparab
Stars★ 85,748★ 137
30天用量
综合分7742
官方
分类
开发者工具AI / LLM 工具其它
GitHub 集成开发者工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月14 个月前

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

Gitingest-MCP · 概述

MCP 服务器,用于提取 GitHub 仓库摘要、结构和内容。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

Gitingest-MCP · 使用场景

  • 在贡献前快速分析未知的 GitHub 仓库
  • 为现有项目生成全面的文档
  • 提取和总结代码库结构以方便入职

everything · 安装

NPX(推荐)

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

Windows 用户请使用 cmd /c

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

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

Gitingest-MCP · 安装

安装

通过 Smithery
npx -y @smithery/cli@latest install @puravparab/gitingest-mcp --client claude --config "{}" # Claude
通过 GitHub

添加到您的 MCP 客户端配置中:

{
  "mcpServers": {
    "gitingest-mcp": {
      "command": "<uv 的路径>/uvx",
      "args": [
        "--from",
        "git+https://github.com/puravparab/gitingest-mcp",
        "gitingest-mcp"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。