time vs Memory-Plus
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | Memory-Plus by Yuchen20 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 58 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具知识库 / RAG |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 12 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
Memory-Plus · 概述
轻量级本地RAG记忆存储,支持记录、检索、更新和可视化AI代理的持久记忆。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
Memory-Plus · 使用场景
- 让AI编程助手跨会话记住项目上下文
- 存储和检索用户偏好以实现个性化AI交互
- 创建想法和概念的知识图谱以增进理解
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}Memory-Plus · 安装
安装步骤
**先决条件:**
- Google API密钥(用于Gemini Embedding API)
- 从[Google AI Studio](https://aistudio.google.com/apikey)获取 - 设置为环境变量中的GOOGLE_API_KEY
**使用UV Runtime设置:**
# 安装UV
pip install uv
# 添加到VS Code/settings.json
{
"mcpServers": {
"memory-plus": {
"command": "uvx",
"args": [
"-q",
"memory-plus@latest"
],
"env": {
"GOOGLE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}**VS Code一键安装:** [](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)