filesystem vs open-code-review
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | open-code-review by raye-deng | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
open-code-review · Summary
AI-powered code quality gate that detects hallucinated packages, stale APIs, and security anti-patterns in AI-generated code.
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
open-code-review · Use cases
- Integrate as a quality gate in CI/CD pipelines for AI-generated code
- Use in AI IDEs (Claude Desktop, Cursor) to review code in real-time
- Automatically fix detected issues with AI-powered suggestions
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.
open-code-review · Install
Install the CLI tool:
npm install -g @opencodereview/cliInstall the MCP Server:
npm install -g @opencodereview/mcp-serverFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"open-code-review": {
"command": "npx",
"args": ["-y", "@opencodereview/mcp-server"]
}
}
}