time vs persistent-ai-memory
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | persistent-ai-memory by savantskie | |
|---|---|---|
| Stars | ★ 85,748 | ★ 230 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
persistent-ai-memory · 概述
为 LLM 设计的持久性 AI 记忆系统,集成 MCP 服务器、数据库存储和对话跟踪功能。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
persistent-ai-memory · 使用场景
- 通过插件集成为 OpenWebUI 聊天助手提供长期记忆功能
- 为兼容 MCP 的 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"]
}
}
}persistent-ai-memory · 安装
安装
# Linux/macOS
pip install git+https://github.com/savantskie/persistent-ai-memory.git
# Windows(使用相同命令,只需在命令提示符或 PowerShell 中运行)
pip install git+https://github.com/savantskie/persistent-ai-memory.gitMCP 服务器集成
# 通过 mcpo
python -m ai_memory_mcp_serverClaude Desktop 配置
在 Claude Desktop 的 config.json 中添加:
{
"mcpServers": {
"ai-memory": {
"command": "python",
"args": ["-m", "ai_memory_mcp_server"]
}
}
}