MCP Catalogs
Home

memory vs masquerade

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

memory
by modelcontextprotocol
masquerade
by postralai
Stars★ 85,748★ 76
30d uses
Score7743
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
SecurityAI / LLM ToolsFile System
LanguageTypeScriptPython
Last committhis month9 mo ago

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

masquerade · Summary

Masquerade MCP is a privacy firewall for LLMs that redacts sensitive data from PDFs before processing.

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

masquerade · Use cases

  • Processing legal contracts with sensitive client information before AI analysis
  • Redacting personal health information from medical records before LLM review
  • Protecting confidential business data in internal documents when using AI assistants

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

masquerade · Install

Installation Options

**Option 1: Automated Setup**

curl -O https://raw.githubusercontent.com/postralai/masquerade/main/setup.sh && bash setup.sh

**Option 2: Manual Setup**

  1. Create a virtual environment with Python 3.10-3.12
python3.12 -m venv pdfmcp
source pdfmcp/bin/activate
  1. Install the repo:
pip install git+https://github.com/postralai/masquerade@main
  1. Configure Claude:
python -m masquerade.configure_claude
  1. Add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "pdf-redaction": {
      "command": "/path/to/python",
      "args": ["/path/to/mcp_pdf_redaction.py"],
      "env": {
        "TINFOIL_API_KEY": "your_api_key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.