MCP Catalogs
Home

filesystem vs remember-mcp-vscode

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
remember-mcp-vscode
by NiclasOlofsson
Stars★ 85,748★ 5
30d uses
Score7737
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month9 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

remember-mcp-vscode · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

remember-mcp-vscode · Use cases

  • Personal AI memory for coding preferences and habits
  • Team knowledge sharing for onboarding and coding conventions
  • Monitoring GitHub Copilot usage and managing costs

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

remember-mcp-vscode · Install

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"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.