haiku.rag vs everything
Side-by-side comparison to help you pick between these two MCP servers.
haiku.rag by ggozad | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 524 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
haiku.rag · Summary
Agentic RAG with multimodal search, analysis agents, and MCP server capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
haiku.rag · Use cases
- Research document analysis with citation support
- Multimodal search across documents and images
- Complex analytical tasks via code execution agents
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
haiku.rag · Install
pip install haiku.ragFor MCP server with Claude Desktop:
haiku-rag serve --mcp --stdioAdd to Claude Desktop config:
{
"mcpServers": {
"haiku-rag": {
"command": "haiku-rag",
"args": ["serve", "--mcp", "--stdio"]
}
}
}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-everything