MCP Catalogs
首页

remember-mcp-vscode

by NiclasOlofsson·5·综合分 37

VS Code扩展,通过MCP集成为AI助手提供持久化记忆功能。

ai-llmdeveloper-toolsproductivity
3
Forks
2
活跃 Issue
9 个月前
最近提交
2 天前
收录于

概述

Remember MCP是一个VS Code扩展,通过模型上下文协议(MCP)为AI助手提供真实的持久化记忆功能。它允许存储个人偏好、团队知识和特定语言的提示,这些内容会被Copilot Chat自动加载。该扩展还监控GitHub Copilot的使用情况并跟踪高级请求,帮助管理成本。它使用VS Code的官方MCP API来注册和管理mode-manager-mcp服务器,实现无缝集成。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:个人AI记忆,存储编码偏好和习惯
:团队知识共享,共享入职指南和编码规范
:监控GitHub Copilot使用情况和管理成本
:Remember MCP如何存储记忆?
:我可以在不使用VS Code的情况下使用Remember MCP吗?

什么时候选它

如果您使用VS Code和GitHub Copilot,并且希望为个人偏好和团队知识提供持久记忆而不需要额外设置,请选择此扩展。

什么时候不要选它

如果您不使用VS Code或GitHub Copilot,或者需要比Mode Manager MCP服务器提供的更高级的记忆管理功能,请避免使用此扩展。

此 server 暴露的工具

从 README 抽取出 5 个工具
  • create_memory

    Store preferences, facts, and best practices in personal memory

  • create_team_memory

    Store shared knowledge, onboarding notes, and project wisdom in workspace memory

  • create_language_memory

    Save language-specific tips and coding preferences

  • get_memory

    Retrieve stored memories based on context and scope

  • list_memories

    Show all stored memories by category and scope

说明:Tool names inferred from memory management features described in the README. The actual MCP server (mode-manager-mcp) likely exposes these tools, but they aren't explicitly listed in this README.

可对比工具

mcp-server-mode-managercopilot-chat-memoryvscode-mcp-memory

安装

安装步骤

  1. 从VS Code Marketplace安装Remember MCP扩展
  2. 扩展会自动检测是否安装了Python和pipx
  3. 如果需要,它会为您安装pipx
  4. 如果在设置中启用,MCP服务器将自动注册

手动设置:

# 安装Python(如果尚未安装)
# 访问 https://www.python.org/downloads/ 下载

# 安装pipx
pip install pipx

# 从VS Code Marketplace安装扩展

对于Claude Desktop集成,添加到您的claude_desktop_config.json

{
  "mcpServers": {
    "remember-mcp": {
      "command": "pipx run --system-site-packages --spec git+https://github.com/NiclasOlofsson/mode-manager-mcp.git mode-manager-mcp"
    }
  }
}

FAQ

Remember MCP如何存储记忆?
记忆以带有YAML前置内容的Markdown文件形式保存,存储在您的用户提示目录(个人)或存储库中(团队)。这些文件每次对话都会被Copilot Chat自动加载。
我可以在不使用VS Code的情况下使用Remember MCP吗?
虽然这是一个VS Code扩展,但底层的记忆功能是由mode-manager-mcp服务器提供的。您可以在VS Code之外直接使用该服务器进行独立使用。

remember-mcp-vscode 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。