parallel-browser-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
parallel-browser-mcp by etairl | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 99 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
parallel-browser-mcp · Summary
An MCP server enabling parallel browser automation across multiple cloud providers with session-based control.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
parallel-browser-mcp · Use cases
- AI agents performing parallel web scraping and data collection from multiple sources simultaneously
- Automated UI testing across different browser environments and cloud providers in parallel
- Content management systems automating updates across multiple web properties concurrently
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
parallel-browser-mcp · Install
Install with npm:
npm install -g parallel-browser-mcpIn Claude Desktop:
{
"mcpServers": {
"parallel-browser-mcp": {
"command": "npx",
"args": ["parallel-browser-mcp@latest"],
"env": {
"BROWSER_MCP_CONFIG": "{\"defaultProvider\":\"playwright\",\"providers\":{\"playwright\":{\"launchOptions\":{\"headless\":true}}}}",
"BROWSERBASE_API_KEY": "your_browserbase_key",
"ANCHOR_API_KEY": "your_anchor_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