everything vs git
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | git by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 85,748 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 77 | 75 |
| 官方 | ✓ | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具本地文件系统效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
git · 概述
功能全面的 Git 操作 MCP 服务器,支持状态查看、差异比较、提交和分支管理。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
git · 使用场景
- AI 驱动的 Git 仓库分析和管理
- 通过差异检查进行自动化代码审查
- 分支管理和工作流程自动化
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-everythinggit · 安装
使用 uv(推荐)
当使用 [uv](https://docs.astral.sh/uv/) 时,无需特定安装。使用 [uvx](https://docs.astral.sh/uv/guides/tools/) 直接运行服务器:
uvx mcp-server-git --repository path/to/git/repo使用 PIP
或者通过 pip 安装 mcp-server-git:
pip install mcp-server-git安装后,按如下方式运行:
python -m mcp_server_gitClaude Desktop 配置
添加到您的 claude_desktop_config.json:
"mcpServers": {
"git": {
"command": "uvx",
"args": ["mcp-server-git", "--repository", "path/to/git/repo"]
}
}