ddgs vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ddgs by deedy5 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,640 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
ddgs · Summary
An MCP server providing web search capabilities across multiple search engines via text, images, videos, news, and books searches.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ddgs · Use cases
- Enabling AI assistants to perform web searches to find current information
- Providing a unified search interface across multiple search engines in MCP-compatible applications
- Aggregating search results to overcome individual search engine limitations and rate limits
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
ddgs · Install
pip install -U ddgs[mcp]For MCP clients like Cursor or Claude Desktop:
{
"mcpServers": {
"ddgs": {
"command": "ddgs",
"args": ["mcp"]
}
}
}Start the server:
ddgs mcp # Start MCP server (stdio transport)
ddgs mcp -pr socks5h://127.0.0.1:9150 # With proxyeverything · 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-everything