everything vs search-console-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | search-console-mcp by saurabhsharma2u | |
|---|---|---|
| Stars | ★ 85,748 | ★ 129 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
search-console-mcp · Summary
MCP server unifying Google Search Console, Bing Webmaster Tools, and GA4 data for AI-driven SEO analytics.
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
search-console-mcp · Use cases
- AI-driven SEO analysis by automatically detecting traffic anomalies and identifying ranking opportunities
- Cross-platform performance comparison between Google and Bing search engines
- Automated SEO health checks with prioritized recommendations for action
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-everythingsearch-console-mcp · Install
Installation
- Install the MCP server:
npm install -g search-console-mcp- Set up authentication:
npx search-console-mcp setup- Add to Claude Desktop configuration:
{
"mcpServers": {
"search-console": {
"command": "npx",
"args": ["-y", "search-console-mcp"]
}
}
}