MCP Catalogs
Home

VibeShift vs everything

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

VibeShift
by GroundNG
everything
by modelcontextprotocol
Stars★ 67★ 85,748
30d uses
Score4577
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit6 mo agothis month

VibeShift · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.