MCP Catalogs
Home

VibeShift vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

VibeShift
by GroundNG
filesystem
by modelcontextprotocol
Stars★ 67★ 85,748
30d uses
Score4577
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit6 mo agothis month

VibeShift · Summary

VibeShift is an MCP server that provides automated security scanning and testing for AI-generated code.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

VibeShift · Use cases

  • Automatically scanning AI-generated code for security vulnerabilities before committing
  • Recording automated UI tests from natural language descriptions
  • Executing regression tests to catch issues after code changes

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

VibeShift · Install

Installation

  1. Clone the repository: git clone https://github.com/GroundNG/VibeShift
  2. Create and activate a virtual environment: python -m venv venv && source venv/bin/activate
  3. Install dependencies: pip install -r requirements.txt
  4. Install Playwright browsers: patchright install --with-deps
  5. Rename .env.example to .env and add your LLM API key

MCP Configuration

Add this to your MCP config:

{
  "mcpServers": {
    "VibeShift":{
      "command": "uv",
      "args": ["--directory","path/to/cloned_repo", "run", "mcp_server.py"]
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.