filesystem vs flexible-graphrag
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | flexible-graphrag by stevereiner | |
|---|---|---|
| Stars | ★ 85,748 | ★ 127 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
flexible-graphrag · Summary
MCP server providing tools for document ingestion, hybrid search, and AI queries in Flexible GraphRAG.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
flexible-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"]
}
}
}