everything vs MySearch-Proxy
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MySearch-Proxy by skernelx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 120 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SearchAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MySearch-Proxy · Summary
Unified search MCP server that proxies requests to Tavily, Firecrawl, Exa and Social with a central management layer.
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
MySearch-Proxy · Use cases
- Local AI assistant with unified search capabilities
- OpenClaw search skill deployment
- Team-based shared search backend with token management
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-everythingMySearch-Proxy · Install
Installation
Option 1: Direct MCP Installation
cd /path/to/MySearch-Proxy
python3 -m venv venv
source venv/bin/activate
# Configure environment variables
echo 'MYSEARCH_PROXY_BASE_URL=https://your-mysearch-proxy.example.com' >> .env
echo 'MYSEARCH_PROXY_API_KEY=mysp-...' >> .env
./install.shOption 2: Deploy Proxy First
mkdir -p mysearch-proxy-data
docker run -d \
--name mysearch-proxy \
--restart unless-stopped \
-p 9874:9874 \
-e ADMIN_PASSWORD=change-me \
-v $(pwd)/mysearch-proxy-data:/app/data \
skernelx/mysearch-proxy:latestClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mysearch": {
"command": "python",
"args": ["-m", "mysearch.mcp_server"],
"env": {
"MYSEARCH_PROXY_BASE_URL": "https://your-mysearch-proxy.example.com",
"MYSEARCH_PROXY_API_KEY": "mysp-..."
}
}
}
}