everything vs reporecall
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | reporecall by proofofwork-agency | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
reporecall · Summary
Local codebase memory system with AST indexing, call graphs, and business context generation for Claude Code and MCP 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
reporecall · Use cases
- Code exploration and understanding large codebases
- Architecture documentation generation and maintenance
- AI coding assistant context enhancement for development workflows
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-everythingreporecall · 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": "."
}
}
}
}