filesystem vs better-code-review-graph
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | better-code-review-graph by n24q02m | |
|---|---|---|
| Stars | ★ 85,748 | ★ 46 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
better-code-review-graph · Summary
MCP server for token-efficient code reviews using knowledge graphs with fixed search and configurable embeddings.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
better-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"