MCP Catalogs
Home

remember-mcp-vscode

by NiclasOlofsson·5·Score 37

VS Code extension that brings persistent memory to your AI assistant through MCP integration.

ai-llmdeveloper-toolsproductivity
3
Forks
2
Open issues
9 mo ago
Last commit
2d ago
Indexed

Overview

Remember MCP is a VS Code extension that provides real, persistent memory for AI assistants through the Model Context Protocol. It allows storing personal preferences, team knowledge, and language-specific tips that are automatically loaded by Copilot Chat. The extension also monitors GitHub Copilot usage and tracks premium requests to help manage costs. It uses VS Code's official MCP API to register and manage the mode-manager-mcp server seamlessly.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Personal AI memory for coding preferences and habits
you:Team knowledge sharing for onboarding and coding conventions
you:Monitoring GitHub Copilot usage and managing costs
you:How does Remember MCP store memory?
you:Can I use Remember MCP without VS Code?

When to choose this

Choose this extension if you use VS Code with GitHub Copilot and want persistent memory for personal preferences and team knowledge without additional setup.

When NOT to choose this

Avoid this if you're not using VS Code or GitHub Copilot, or if you need more advanced memory management features beyond what the Mode Manager MCP server provides.

Tools this server exposes

5 tools extracted from the README
  • 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

Note: 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.

Comparable tools

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

Installation

Installation

  1. Install Remember MCP from the VS Code Marketplace
  2. The extension will automatically detect if Python and pipx are installed
  3. If needed, it will install pipx for you
  4. The MCP server will auto-register if enabled in settings

For manual setup:

# Install Python (if not already installed)
# Get it at https://www.python.org/downloads/

# Install pipx
pip install pipx

# Install extension from VS Code marketplace

For Claude Desktop integration, add to your 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

How does Remember MCP store memory?
Memory is saved as Markdown files with YAML frontmatter, stored in your user prompts directory (personal) or shared in the repository (team). These files are automatically loaded by Copilot Chat every conversation turn.
Can I use Remember MCP without VS Code?
While this is a VS Code extension, the underlying memory functionality is provided by the mode-manager-mcp server. You can use that server directly for standalone usage outside of VS Code.

Compare remember-mcp-vscode with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.