everything vs p4mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | p4mcp-server by perforce | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具运维基建其它 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
p4mcp-server · 概述
Perforce P4 MCP Server 集成 P4 版本控制系统,提供变更列表、文件等的结构化读写工具。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
p4mcp-server · 使用场景
- AI 助手访问 Perforce 仓库分析代码变更并提供反馈
- 通过支持 MCP 的 AI 工具自动化代码审查工作流
- 通过自然语言界面简化开发团队的版本控制操作
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-everythingp4mcp-server · 安装
安装选项
**预编译二进制文件(推荐)**:
- 下载 [macOS](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-mac.zip)、[Windows](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-win.zip) 或 [Linux](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-linux.zip) 版本
- 解压并直接使用可执行文件
**从源代码构建**:
- 需要 Python 3.11+ 和 Tkinter
- 运行
chmod +x build.sh && ./build.sh package(macOS/Linux)或build.bat package(Windows)
**MCP 客户端配置**:
{
"mcpServers": {
"perforce-p4-mcp": {
"command": "/absolute/path/to/p4-mcp-server",
"env": {
"P4PORT": "ssl:perforce.example.com:1666",
"P4USER": "your_username",
"P4CLIENT": "your_workspace"
},
"args": [
"--readonly", "--allow-usage"
]
}
}
}