nocturne_memory vs time
并排对比,帮你在这两个 MCP server 之间做选择。
nocturne_memory by Dataojitori | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,080 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 55 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
nocturne_memory · 概述
为 MCP 代理提供跨会话身份和上下文持久化的长期记忆服务器。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
nocturne_memory · 使用场景
- 使 AI 代理能够在多个 LLM 平台间保持一致的身份和上下文
- 为 AI 提供长期个人记忆,以建立更好的用户关系
- 允许 AI 在不同会话中自主组织和检索复杂信息结构
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
nocturne_memory · 安装
安装
前置要求
- Python 3.10+
- Node.js(用于构建前端仪表板)
步骤 1:克隆并安装依赖
git clone https://github.com/Dataojitori/nocturne_memory.git
cd nocturne_memory
pip install -r backend/requirements.txt步骤 2:连接到 AI 客户端
在您的 AI 客户端的 MCP 配置中添加(替换为实际路径):
{
"mcpServers": {
"nocturne_memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
}
}
}对于 Claude Desktop
{
"mcpServers": {
"nocturne-memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
}
}
}对于 Antigravity (Windows)
由于 Windows 上的 CRLF/LF 问题,请使用包装器:
{
"mcpServers": {
"nocturne_memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_wrapper.py"]
}
}
}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"]
}
}
}