everything vs flexible-graphrag
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | flexible-graphrag by stevereiner | |
|---|---|---|
| Stars | ★ 85,748 | ★ 127 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
flexible-graphrag · Summary
MCP server providing tools for document ingestion, hybrid search, and AI queries in Flexible GraphRAG.
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
flexible-graphrag · Use cases
- Document knowledge extraction and RAG from enterprise repositories
- AI-powered search across hybrid data sources (structured and unstructured)
- Integrating Flexible GraphRAG capabilities into Claude Desktop 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-everythingflexible-graphrag · Install
- Install flexible-graphrag-mcp package:
pip install flexible-graphrag-mcp - Configure your MCP client to connect to the server
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"flexible-graphrag": {
"command": "python",
"args": ["-m", "flexible_graphrag_mcp"]
}
}
}