time vs Memory-Plus
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | Memory-Plus by Yuchen20 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 58 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
Memory-Plus · Summary
Lightweight local RAG memory store for MCP agents with record, retrieve, update, and visualization features.
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
Memory-Plus · Use cases
- Enable AI coding assistants to remember project context across sessions
- Store and retrieve user preferences for personalized AI interactions
- Create knowledge graphs of ideas and concepts for better understanding
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"]
}
}
}Memory-Plus · Install
Installation
**Prerequisites:**
- Google API Key (for Gemini Embedding API)
- Obtain from [Google AI Studio](https://aistudio.google.com/apikey) - Set as GOOGLE_API_KEY in environment
**Setup with UV Runtime:**
# Install UV
pip install uv
# Add to VS Code/settings.json
{
"mcpServers": {
"memory-plus": {
"command": "uvx",
"args": [
"-q",
"memory-plus@latest"
],
"env": {
"GOOGLE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}**One-Click VS Code Install:** [](https://insiders.vscode.dev/redirect/mcp/install?name=memory-plus&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22-q%22%2C%22memory-plus%40latest%22%5D%7D)