everything vs deep-research-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | deep-research-mcp by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsSearchProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
deep-research-mcp · Summary
A research-focused MCP server using Tavily APIs to gather and structure web information for LLM documentation generation.
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 · Use cases
- Comprehensive topic research for creating detailed technical documentation
- Automated report generation with structured web content analysis
- Background information gathering for AI agents performing complex tasks
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 · Install
Installation
**Via Smithery (Recommended for Claude Desktop)**
npx -y @smithery/cli install @pinkpixel/dev-deep-research-mcp --client claude**Using NPX**
npx @pinkpixel/deep-research-mcp**Global Installation**
npm install -g @pinkpixel/deep-research-mcp
deep-research-mcp**Claude Desktop Configuration**
{
"mcpServers": {
"deep-research": {
"command": "npx",
"args": [
"-y",
"@pinkpixel/deep-research-mcp"
],
"env": {
"TAVILY_API_KEY": "tvly-YOUR_API_KEY"
}
}
}
}