google-surf-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
google-surf-mcp by HarimxChoi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 169 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | SearchWeb ScrapingAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
google-surf-mcp · Summary
A robust Google search MCP server combining search, content extraction, and academic paper analysis without API keys.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
google-surf-mcp · Use cases
- AI agents needing real-time web information retrieval without API key limitations
- Academic researchers requiring efficient access to papers across multiple repositories
- Content creators who need to analyze search results before following links
- Automation workflows that combine web search with content analysis
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
google-surf-mcp · Install
npm install -g google-surf-mcpConfigure your MCP client:
{
"mcpServers": {
"google-surf": {
"command": "npx",
"args": ["-y", "google-surf-mcp"]
}
}
}First tool call auto-bootstraps the warm profile (Chrome may open briefly).
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