cuba-memorys vs time
Side-by-side comparison to help you pick between these two MCP servers.
cuba-memorys by LeandroPG19 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphAI / LLM ToolsDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
cuba-memorys · Summary
A sophisticated MCP server providing AI agents with persistent memory using knowledge graphs, neuroscience-inspired algorithms, and anti-hallucination techniques.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
cuba-memorys · Use cases
- Long-term memory for AI coding assistants that persists across sessions
- Knowledge management systems with semantic relationships and contradiction detection
- AI agents requiring context-aware memory and prospective triggers
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
cuba-memorys · Install
Recommended Installation (PyPI)
pip install cuba-memorysClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"cuba-memorys": {
"command": "cuba-memorys"
}
}
}Auto-provisioned Setup
No configuration required - the server automatically provisions a PostgreSQL database via Docker on first run. Docker must be installed and running.
Custom PostgreSQL Setup
If you already have PostgreSQL with pgvector:
{
"mcpServers": {
"cuba-memorys": {
"command": "cuba-memorys",
"env": {
"DATABASE_URL": "postgresql://user:pass@localhost:5432/brain"
}
}
}
}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"]
}
}
}