time vs persistent-ai-memory
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | persistent-ai-memory by savantskie | |
|---|---|---|
| Stars | ★ 85,748 | ★ 230 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
persistent-ai-memory · Summary
Persistent AI memory system for LLMs with MCP server integration, database storage, and conversation tracking.
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
persistent-ai-memory · Use cases
- Enabling long-term memory in OpenWebUI chat assistants through the plugin integration
- Adding conversation history and memory capabilities to MCP-compatible AI assistants
- Implementing personalized AI assistants with persistent memory across sessions
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"]
}
}
}persistent-ai-memory · Install
Installation
# Linux/macOS
pip install git+https://github.com/savantskie/persistent-ai-memory.git
# Windows (same command, just use Command Prompt or PowerShell)
pip install git+https://github.com/savantskie/persistent-ai-memory.gitMCP Server Integration
# Via mcpo
python -m ai_memory_mcp_serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"ai-memory": {
"command": "python",
"args": ["-m", "ai_memory_mcp_server"]
}
}
}