time vs reporecall
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | reporecall by proofofwork-agency | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
reporecall · Summary
Local codebase memory system with AST indexing, call graphs, and business context generation for Claude Code and MCP agents.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
reporecall · Use cases
- Code exploration and understanding large codebases
- Architecture documentation generation and maintenance
- AI coding assistant context enhancement for development workflows
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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": "."
}
}
}
}