everything vs better-code-review-graph
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | better-code-review-graph by n24q02m | |
|---|---|---|
| Stars | ★ 85,748 | ★ 46 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
better-code-review-graph · Summary
MCP server for token-efficient code reviews using knowledge graphs with fixed search and configurable embeddings.
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
better-code-review-graph · Use cases
- Code review automation with token-efficient context generation
- Impact analysis when modifying critical functions in large codebases
- Semantic search across codebases using vector embeddings
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-everythingbetter-code-review-graph · Install
Installation
With Claude Desktop
- Add to your
claude_desktop_config.json:
{
"mcpServers": {
"better-code-review-graph": {
"command": "uv",
"args": ["run", "better-code-review-graph", "stdio"],
"env": {
"CRG_DATABASE_URL": "sqlite:///code-review-graph.db"
}
}
}
}With pip
pip install better-code-review-graph
better-code-review-graph initWith Docker
docker run -it --rm -v "$(pwd):/app" -e CRG_DATABASE_URL="sqlite:///code-review-graph.db" n24q02m/better-code-review-graph:latest"