vibetest-use vs everything
Side-by-side comparison to help you pick between these two MCP servers.
vibetest-use by browser-use | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 793 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsMonitoring | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 9 mo ago | this month |
vibetest-use · Summary
MCP server for automated QA testing using Browser-Use agents to find UI bugs and accessibility issues.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
vibetest-use · Use cases
- Automated UI bug detection on web applications
- Link validation across entire websites
- Accessibility compliance testing
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
vibetest-use · Install
# Install dependencies
uv venv
source .venv/bin/activate
uv pip install -e .
# Install the browser
playwright install chromium --with-deps --no-shell
# For Claude Code
claude mcp add vibetest /full/path/to/vibetest-use/.venv/bin/vibetest-mcp -e GOOGLE_API_KEY="your_api_key"
# For Cursor (add to config)
{
"mcpServers": {
"vibetest": {
"command": "/full/path/to/vibetest-use/.venv/bin/vibetest-mcp",
"env": {
"GOOGLE_API_KEY": "your_api_key"
}
}
}
}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