mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp by BrowserMCP | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6,510 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
mcp · Summary
Browser MCP enables AI applications to control your browser locally for automation tasks.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Use cases
- Automating repetitive web tasks
- Scraping data while avoiding detection
- Controlling logged-in web applications via AI
- Testing web applications with real browser context
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
mcp · Install
Installation
- Install the Browser MCP Chrome extension from the Chrome Web Store
- Install the MCP server package:
``bash npm install -g @browsermcp/server ``
- Configure Claude Desktop:
``json { "mcpServers": { "browser-mcp": { "command": "npx", "args": ["@browsermcp/server"] } } } ``
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