everything vs mcp-webresearch
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-webresearch by mzxrai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 297 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 17 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-webresearch · Summary
MCP server enabling Claude to perform web research with Google search, page extraction, and screenshot capture capabilities.
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
mcp-webresearch · Use cases
- Real-time web research for current topics
- Extracting content from specific web pages
- Tracking and organizing research sessions with screenshots
- Conducting agentic research with iterative refinement
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-everythingmcp-webresearch · Install
- Install Node.js >= 18
- Install Claude Desktop app
- Add this to your
claude_desktop_config.json:
{
"mcpServers": {
"webresearch": {
"command": "npx",
"args": ["-y", "@mzxrai/mcp-webresearch@latest"]
}
}
}