mem0-mcp-selfhosted vs time
Side-by-side comparison to help you pick between these two MCP servers.
mem0-mcp-selfhosted by elvismdev | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mem0-mcp-selfhosted · Summary
A self-hosted mem0 MCP server that integrates with Qdrant, Neo4j, and Ollama for persistent memory management with Claude Code.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mem0-mcp-selfhosted · Use cases
- Persistent memory management for long-running coding sessions across project contexts
- Knowledge graph-based entity relationship tracking for complex systems
- Local-first AI applications with no cloud dependencies using Ollama as the LLM backend
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
mem0-mcp-selfhosted · Install
# Add globally with default Anthropic provider
claude mcp add --scope user --transport stdio mem0 \
--env MEM0_USER_ID=your-user-id \
-- uvx --from git+https://github.com/elvismdev/mem0-mcp-selfhosted.git mem0-mcp-selfhosted
# Add with fully local Ollama configuration
claude mcp add --scope user --transport stdio mem0 \
--env MEM0_PROVIDER=ollama \
--env MEM0_LLM_MODEL=qwen3:14b \
--env MEM0_USER_ID=your-user-id \
-- uvx --from git+https://github.com/elvismdev/mem0-mcp-selfhosted.git mem0-mcp-selfhosted
# For project-specific setup, create .mcp.json
{
"mcpServers": {
"mem0": {
"command": "uvx",
"args": ["--from", "git+https://github.com/elvismdev/mem0-mcp-selfhosted.git", "mem0-mcp-selfhosted"],
"env": {
"MEM0_PROVIDER": "ollama",
"MEM0_LLM_MODEL": "qwen3:14b",
"MEM0_USER_ID": "your-user-id"
}
}
}
}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"]
}
}
}