browser-mcp-lite vs everything
Side-by-side comparison to help you pick between these two MCP servers.
browser-mcp-lite by karolaapiarian589 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
browser-mcp-lite · Summary
A lightweight MCP server for Chrome browser automation through extensions with secure token authentication.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
browser-mcp-lite · Use cases
- Automating browser interactions for web testing workflows
- Extracting structured data from web pages using accessibility trees
- Enabling AI agents to interact with web applications through MCP
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
browser-mcp-lite · Install
Installation
- Download the latest release from the GitHub repository
- Extract the ZIP file if needed
- Install the Chrome extension from the provided folder
- Launch the Windows application
- Configure token authentication between the app and extension
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"browser-mcp-lite": {
"command": "path/to/browser-mcp-lite.exe",
"args": [],
"env": {
"TOKEN": "your-auth-token"
}
}
}
}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