webmcp-bridge vs everything
Side-by-side comparison to help you pick between these two MCP servers.
webmcp-bridge by holon-run | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
webmcp-bridge · Summary
A bridge that connects local MCP clients to browser WebMCP tools through Playwright, supporting both native and injected adapters.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
webmcp-bridge · Use cases
- Connect local MCP clients to browser-only WebMCP tools like those on websites requiring authentication
- Enable human-AI collaboration on the same web page with shared browser context
- Automate interactions with websites that don't natively support WebMCP through adapter injection
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
webmcp-bridge · Install
# Install Playwright browsers first
npx playwright install
# Install from npm
npm install -g @webmcp-bridge/local-mcp
# Run directly
npx -y @webmcp-bridge/local-mcp --url https://board.holon.run --headless
# Or with uxc (recommended for stable shortcuts)
uxc link board-webmcp-ui "npx -y @webmcp-bridge/local-mcp --url https://board.holon.run --no-headless"Claude Desktop configuration:
{
"mcpServers": {
"webmcp-bridge": {
"command": "npx",
"args": ["-y", "@webmcp-bridge/local-mcp", "--url", "https://board.holon.run"]
}
}
}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