filesystem vs vibe-check-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | vibe-check-mcp-server by PV-Bhat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 487 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
vibe-check-mcp-server · Summary
Vibe Check MCP provides mentor-like feedback to AI Agents, preventing tunnel-vision and over-engineering through chain-pattern interrupts.
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
vibe-check-mcp-server · Use cases
- Coding assistance to prevent over-engineering and maintain simplicity
- Oversight for high-risk tasks requiring careful deliberation
- Guidance for ambiguous tasks that might lead to agent tunnel vision
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.
vibe-check-mcp-server · Install
Installation
Quick Start (npx)
Run the server directly from npm without a local installation. Requires Node >=20.
Option 1 – MCP client over STDIO
npx -y @pv-bhat/vibe-check-mcp start --stdioAdd this to your client config:
{
"mcpServers": {
"vibe-check-mcp": {
"command": "npx",
"args": ["-y", "@pv-bhat/vibe-check-mcp", "start", "--stdio"]
}
}
}Option 2 – HTTP inspection
npx -y @pv-bhat/vibe-check-mcp start --http --port 2091