open-browser-use vs everything
Side-by-side comparison to help you pick between these two MCP servers.
open-browser-use by iFurySt | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
open-browser-use · Summary
Platform-neutral browser automation MCP server for AI agents with CLI and SDK support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
open-browser-use · Use cases
- Automated web testing and UI interactions for AI agents
- Web scraping and data extraction using AI automation
- Cross-platform browser automation without vendor lock-in
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
open-browser-use · Install
Install the CLI globally:
npm i -g open-browser-use
open-browser-use setupFor MCP server integration:
npx add-mcp "obu mcp" --name open_browser_use --all -g -yManual configuration for Claude Desktop:
[mcp_servers.open_browser_use]
command = "obu"
args = ["mcp"]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