memcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
memcp by maydali28 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
memcp · Summary
A persistent memory MCP server for Claude Code that implements the Recursive Language Model framework to store knowledge across sessions.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
memcp · Use cases
- Long-term project development where knowledge needs to persist across sessions
- Complex analysis of large documents that exceed context window limits
- Multi-session workflows requiring retention of decisions, findings, and preferences
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
memcp · Install
Install MemCP using pip:
pip install memcpFor interactive installation:
bash scripts/install.shTo use with Claude Code, register the MCP server in your Claude Desktop configuration:
{
"mcpServers": {
"memcp": {
"command": "python",
"args": ["-m", "memcp.server"],
"env": {}
}
}
}Optional dependencies for enhanced capabilities:
pip install memcp[ner] # For spaCy NER
pip install memcp[vector] # For semantic search with embeddingstime · 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"]
}
}
}