opencode-browser vs everything
Side-by-side comparison to help you pick between these two MCP servers.
opencode-browser by michaljach | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 46 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
opencode-browser · Summary
MCP server plugin for OpenCode that enables browser automation through Browser MCP integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
opencode-browser · Use cases
- Automated web testing and validation of web applications
- Data extraction and web scraping from various websites
- Form automation and data entry for repetitive web tasks
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
opencode-browser · Install
Installation
- Install Browser MCP Extension:
- Visit https://browsermcp.io/install - Install the extension for Chrome or Edge - Follow the setup instructions
- Configure OpenCode:
``bash npx opencode-browser init ` This creates/updates ./opencode.json` with the required configuration.
- Alternative manual configuration:
``json { "$schema": "https://opencode.ai/config.json", "plugin": ["opencode-browser"], "mcp": { "browsermcp": { "type": "local", "command": ["npx", "-y", "@browsermcp/mcp@0.1.3"], "enabled": true } } } ``
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