everything vs openrouter-deep-research-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | openrouter-deep-research-mcp by wheattoast11 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 50 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openrouter-deep-research-mcp · Summary
Multi-agent research MCP server with async agents, semantic search, and persistent knowledge base.
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
openrouter-deep-research-mcp · Use cases
- Deep research with multiple specialized agents
- Knowledge management and semantic search
- AI-powered content synthesis and analysis
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-everythingopenrouter-deep-research-mcp · Install
Install with npm:
npx @terminals-tech/openrouter-agents --stdioFor Claude Desktop, add to config file:
{
"mcpServers": {
"openrouter-agents": {
"command": "npx",
"args": ["@terminals-tech/openrouter-agents"],
"env": {
"OPENROUTER_API_KEY": "sk-or-..."
}
}
}
}