kept vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
kept by egroup-labs | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 本地文件系统知识库 / RAG效率工具 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
kept · 概述
Kept 是一个 MCP 服务器,将 AI 对话管理为本地保险库中的可搜索 Markdown 文件。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
kept · 使用场景
- 在编码工作流程中搜索和重用过去的 AI 对话
- 维护 AI 交互的个人知识图谱
- 归档和整理来自 AI 助手的笔记
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
kept · 安装
安装
桌面应用
快速安装:
# macOS/Linux
curl -fsSL https://kept.work/install.sh | bash
# Windows PowerShell
irm https://github.com/egroup-labs/kept/releases/latest/download/install.ps1 | iexMCP 服务器
# macOS/Linux
bash <(curl -fsSL https://raw.githubusercontent.com/egroup-labs/kept/main/scripts/install-kept-mcp.sh)
# Windows PowerShell
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/egroup-labs/kept/main/scripts/install-kept-mcp.ps1)))Claude Desktop
添加到 claude_desktop_config.json:
{
"mcpServers": {
"kept-vault": {
"command": "npx",
"args": ["@kept-plugins/kept-vault"]
}
}
}如果您的保险库不在 ~/.kept/vault,请设置 KEPT_VAULT_PATH 环境变量。
memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .vscode/mcp.json 中手动配置:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}