everything vs deep-research-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | deep-research-mcp-server by ssdeanx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 70 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
deep-research-mcp-server · Summary
MCP server for deep research using Google Gemini 2.5 Flash, providing iterative research capabilities with web grounding.
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
deep-research-mcp-server · Use cases
- Conducting in-depth research on complex technical topics with iterative refinement
- Generating comprehensive research reports with citations and methodology
- Integrating advanced research capabilities into AI agent workflows via MCP
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-everythingdeep-research-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/ssdeanx/deep-research-mcp-server
cd deep-research-mcp-server- Install dependencies:
npm install- Set up environment variables:
Create a .env.local file with:
GEMINI_API_KEY="your_gemini_key"
GEMINI_MODEL=gemini-2.5-flash
CONCURRENCY_LIMIT=5- Build the project:
npm run build- Run as MCP server:
node --env-file .env.local dist/mcp-server.js**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["--env-file", ".env.local", "dist/mcp-server.js"]
}
}
}