nocturne_memory vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
nocturne_memory by Dataojitori | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,080 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 55 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
nocturne_memory · 概述
为 MCP 代理提供跨会话身份和上下文持久化的长期记忆服务器。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
nocturne_memory · 使用场景
- 使 AI 代理能够在多个 LLM 平台间保持一致的身份和上下文
- 为 AI 提供长期个人记忆,以建立更好的用户关系
- 允许 AI 在不同会话中自主组织和检索复杂信息结构
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
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"]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。