nocturne_memory vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
nocturne_memory by Dataojitori | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,080 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 55 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
nocturne_memory · 概述
为 MCP 代理提供跨会话身份和上下文持久化的长期记忆服务器。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
nocturne_memory · 使用场景
- 使 AI 代理能够在多个 LLM 平台间保持一致的身份和上下文
- 为 AI 提供长期个人记忆,以建立更好的用户关系
- 允许 AI 在不同会话中自主组织和检索复杂信息结构
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 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"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything