remember-mcp-vscode
by NiclasOlofsson·★ 5·Score 37
VS Code extension that brings persistent memory to your AI assistant through MCP integration.
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:
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 READMEcreate_memoryStore preferences, facts, and best practices in personal memory
create_team_memoryStore shared knowledge, onboarding notes, and project wisdom in workspace memory
create_language_memorySave language-specific tips and coding preferences
get_memoryRetrieve stored memories based on context and scope
list_memoriesShow 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
Installation
Installation
- Install Remember MCP from the VS Code Marketplace
- The extension will automatically detect if Python and pipx are installed
- If needed, it will install pipx for you
- 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 marketplaceFor 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
Last updated · Auto-generated from public README + GitHub signals.