MCP Catalogs
Home

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
Score7743
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month1 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/cli

Install the MCP Server:

npm install -g @opencodereview/mcp-server

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "open-code-review": {
      "command": "npx",
      "args": ["-y", "@opencodereview/mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.