mcp-memory-service vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-memory-service by doobidoo | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,848 | ★ 85,748 |
| 30d uses | — | — |
| Score | 56 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mcp-memory-service · Summary
Persistent memory service for AI agents with REST API, MCP, OAuth, and knowledge graph functionality.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-memory-service · Use cases
- Persistent memory for AI agents across conversation sessions
- Multi-agent systems with shared knowledge and inter-agent messaging
- Self-hosted alternative to commercial memory APIs with privacy control
- Remote memory service for claude.ai browser integration
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
mcp-memory-service · Install
# Basic installation
pip install mcp-memory-service
# Start the server
MCP_ALLOW_ANONYMOUS_ACCESS=true memory server --httpFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-memory": {
"command": "python",
"args": ["-m", "mcp_memory_service.server"],
"env": {
"MCP_ALLOW_ANONYMOUS_ACCESS": "true",
"MCP_STREAMABLE_HTTP_MODE": "1"
}
}
}
}For remote MCP with claude.ai browser:
MCP_STREAMABLE_HTTP_MODE=1 MCP_SSE_HOST=0.0.0.0 MCP_SSE_PORT=8765 python -m mcp_memory_service.servertime · 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"]
}
}
}