annas-mcp vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
annas-mcp by iosifache | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 863 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索本地文件系统AI / LLM 工具 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
annas-mcp · 概述
一个用于搜索和下载 Anna's Archive 文档的 MCP 服务器和 CLI 工具。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
annas-mcp · 使用场景
- 通过 DOI 或关键词搜索学术论文
- 通过 MD5 哈希下载书籍进行研究
- 通过 MCP 客户端访问公共领域和知识共享许可的文档
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
annas-mcp · 安装
- 从 GitHub Releases 部分下载适当的二进制文件
- 设置环境变量:
- ANNAS_SECRET_KEY:您的 Anna's Archive API 密钥 - ANNAS_DOWNLOAD_PATH:下载目录路径 - ANNAS_BASE_URL:可选的镜像 URL
- 对于 Claude Desktop,添加到配置:
"anna-mcp": {
"command": "/path/to/annas-mcp",
"args": ["mcp"],
"env": {
"ANNAS_SECRET_KEY": "your-api-key",
"ANNAS_DOWNLOAD_PATH": "/your/download/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"]
}
}
}