filesystem vs reporecall
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | reporecall by proofofwork-agency | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
reporecall · Summary
Local codebase memory system with AST indexing, call graphs, and business context generation for Claude Code and MCP agents.
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
reporecall · Use cases
- Code exploration and understanding large codebases
- Architecture documentation generation and maintenance
- AI coding assistant context enhancement for development workflows
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.
reporecall · Install
npm install -g @proofofwork-agency/reporecall
reporecall init # Create .memory/, hooks, MCP config
reporecall index # Index the codebase (builds topology + wiki)
reporecall serve # Start daemon + file watcher
reporecall lens --serve # Open the architecture dashboardFor Claude Desktop integration:
{
"mcpServers": {
"reporecall": {
"command": "npx",
"args": ["@proofofwork-agency/reporecall", "mcp"],
"env": {
"REPORECALL_PROJECT_PATH": "."
}
}
}
}