everything vs superlocalmemory
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | superlocalmemory by qualixar | |
|---|---|---|
| Stars | ★ 85,748 | ★ 150 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
superlocalmemory · 概述
一款仅限本地的AI记忆系统,通过MCP集成,为AI客户端提供无限记忆功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
superlocalmemory · 使用场景
- 为Claude Code、Cursor和Windsurf等AI编程助手增强跨会话持久记忆
- 构建私密、设备上的无限记忆AI代理,永不将数据发送到云服务
- 创建需要符合GDPR/EU AI法案且无外部数据传输的研究应用
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-everythingsuperlocalmemory · 安装
通过npm安装(推荐)
npm install -g superlocalmemory
slm setup # 选择模式(A/B/C)
slm doctor # 验证一切正常工作
slm warmup # 预下载嵌入模型(约500MB,可选)通过pip安装
pip install superlocalmemoryMCP集成(Claude、Cursor、Windsurf、VS Code等)
{
"mcpServers": {
"superlocalmemory": {
"command": "slm",
"args": ["mcp"]
}
}
}