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 | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this 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
- Clone the repository:
git clone https://github.com/GroundNG/VibeShift - Create and activate a virtual environment:
python -m venv venv && source venv/bin/activate - Install dependencies:
pip install -r requirements.txt - Install Playwright browsers:
patchright install --with-deps - Rename
.env.exampleto.envand 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