filesystem vs mcp_review_code_tool
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp_review_code_tool by wenkil | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | HTML |
| Last commit | this month | 13 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp_review_code_tool · Summary
MCP server for code review using OpenAI API to analyze and review code files.
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
mcp_review_code_tool · Use cases
- Automating code review processes in development workflows
- Integrating AI-powered code analysis into IDEs via MCP
- Generating detailed code quality reports and 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.
mcp_review_code_tool · Install
Installation Steps
- Clone the repository:
git clone [repository url]
cd mcp_review_code_tool- Install dependencies:
npm install- Build the project:
npm run build- Configure MCP server in your MCP configuration (e.g., Claude Desktop):
{
"mcpServers": {
"code-review": {
"command": "node",
"args": ["/path/to/dist/mcp_code_review.js"],
"env": {
"OPENAI_API_KEY": "your-api-key",
"OPENAI_API_BASE": "https://openrouter.ai/api/v1",
"OPENAI_API_MODEL": "qwen/qwen-2.5-coder-32b-instruct:free"
}
}
}
}