← 返回首页
🗄️

mcp-memory-service

databasesPythonremote 活跃维护
1,696 stars
最后更新:2026/4/20
质量评分
90/100
优秀
发现方式
github-search
最后更新
2026/4/20
状态
✓ 活跃

📝 工具简介

Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.

这个MCP工具可以帮助你更好地使用AI助手,通过标准化协议让AI能够访问和操作外部资源。它支持在Claude Desktop、Cursor等MCP客户端中使用。

🏷️ 标签

mcp-memory-serviceagent-memoryagentic-aiai-agentsautogen

🚀 安装配置指南

🟢 开箱即用
安装命令
pip install mcp-memory-service
Claude Desktop 配置
在 Claude Desktop Settings → MCP Servers 中添加
{
  "mcpServers": {
    "mcp-memory-service": {
      "command": "uvx",
      "args": [
        "mcp-memory-service"
      ]
    }
  }
}
Cursor 配置
在 Cursor Settings → MCP 中添加
{
  "mcpServers": {
    "mcp-memory-service": {
      "command": "uvx",
      "args": [
        "mcp-memory-service"
      ]
    }
  }
}
📋 环境要求: Python 3.10+

📖 使用教程

步骤 1:安装工具

按照上面的安装命令完成工具安装。

提示:使用 `-y` 参数可以跳过确认提示。

步骤 2:配置MCP客户端

复制上方的配置JSON,粘贴到你的MCP客户端配置文件中。

Claude Desktop 配置文件位置: ~/Library/Application Support/Claude/claude_desktop_config.json

步骤 3:重启客户端

重启你的MCP客户端(Claude Desktop或Cursor),工具会自动加载。

在对话中,你可以直接告诉AI助手使用这个工具,例如:"帮我读取最近的文件"。

❓ 常见问题

这个MCP工具安全吗?

mcp-memory-service 是一个开源项目,代码公开透明。安装前建议查看GitHub仓库的代码和社区反馈。配置时请注意保护你的API密钥和敏感信息。

支持哪些MCP客户端?

该工具支持所有兼容MCP协议的客户端,包括Claude Desktop、Cursor、Cline、Cherry Studio等。

如何更新到最新版本?

使用安装命令重新安装即可。如果是npx安装,会自动使用最新版本。如果是pip install,运行 `pip install --upgrade ${tool.name}`。

遇到问题怎么办?

1. 检查配置文件是否正确
2. 查看客户端日志
3. 访问 GitHub仓库 提交Issue