everything vs p4mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | p4mcp-server by perforce | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraOther |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
p4mcp-server · Summary
Perforce P4 MCP Server integrates with P4 version control to provide structured read/write tools for changelists, files, and more.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
p4mcp-server · Use cases
- AI assistants accessing Perforce repositories to analyze code changes and provide feedback
- Automating code review workflows through MCP-enabled AI tools
- Streamlining version control operations for development teams via natural language interfaces
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingp4mcp-server · Install
Installation Options
**Pre-built binaries (recommended)**:
- Download for [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), or [Linux](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-linux.zip)
- Extract and use the executable directly
**Build from source**:
- Requires Python 3.11+ with Tkinter
- Run
chmod +x build.sh && ./build.sh package(macOS/Linux) orbuild.bat package(Windows)
**MCP Client Configuration**:
{
"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"
]
}
}
}