Skip to main content

A persistent vector memory MCP server with multi-project isolation

Project description

Fremem (formerly MCP Memory Server)

License Python Release

A persistent vector memory server for Windsurf, VS Code, and other MCP-compliant editors.

๐ŸŒŸ Philosophy

  • Privacy-first, local-first AI memory: Your data stays on your machine.
  • No vendor lock-in: Uses open standards and local files.
  • Built for MCP: Designed specifically to enhance Windsurf, Cursor, and other MCP-compatible IDEs.

โ„น๏ธ Status (v0.2.0)

Stable:

  • โœ… Local MCP memory with Windsurf/Cursor
  • โœ… Multi-project isolation
  • โœ… Ingestion of Markdown docs

Not stable yet:

  • ๐Ÿšง Auto-ingest (file watching)
  • ๐Ÿšง Memory pruning
  • ๐Ÿšง Remote sync

Note: There are two ways to run this server:

  1. Local IDE (stdio): Used by Windsurf/Cursor (default).
  2. Docker/Server (HTTP): Used for remote deployments or Docker (exposes port 8000).

๐Ÿฅ Health Check

To verify the server binary runs correctly:

# From within the virtual environment
python -m fremem.server --help

โœ… Quickstart (5-Minute Setup)

There are two ways to set this up: Global Install (recommended for ease of use) or Local Dev.

Option A: Global Install (Like npm -g)

This method allows you to run fremem from anywhere without managing virtual environments manually.

1. Install pipx (if not already installed):

MacOS (via Homebrew):

brew install pipx
pipx ensurepath
# Restart your terminal after this!

Linux/Windows: See pipx installation instructions.

2. Install fremem:

# Install from PyPI
pipx install fremem

# Verify installation
fremem --help

Configure Windsurf / VS Code:

Since pipx puts the executable in your PATH, the config is simpler:

{
  "mcpServers": {
    "memory": {
      "command": "fremem",
      "args": [],
      "env": {
        "MCP_MEMORY_PATH": "/Users/YOUR_USERNAME/mcp-memory-data"
      }
    }
  }
}

Note on MCP_MEMORY_PATH: This is where fremem will store its persistent database. You can point this to any directory you like (checks locally or creating it if it doesn't exist). We recommend something like ~/mcp-memory-data or ~/.fremem-data. It must be an absolute path.

Option B: Local Dev Setup

1. Clone and Setup

git clone https://github.com/iamjpsharma/fremem.git
cd fremem

# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate

# Install dependencies AND the package in editable mode
pip install -e .

2. Configure Windsurf / VS Code (Local Dev)

Add this to your mcpServers configuration (e.g., ~/.codeium/windsurf/mcp_config.json):

Note: Replace /ABSOLUTE/PATH/TO/fremem with the actual full path to the cloned directory.

{
  "mcpServers": {
    "memory": {
      "command": "/ABSOLUTE/PATH/TO/fremem/.venv/bin/python",
      "args": ["-m", "fremem.server"],
      "env": {
        "MCP_MEMORY_PATH": "/ABSOLUTE/PATH/TO/fremem/mcp_memory_data"
      }
    }
  }
}

In local dev mode, it's common to store the data inside the repo (ignored by git), but you can use any absolute path.

๐Ÿš€ Usage

0. HTTP Server (New)

You can run the server via HTTP (SSE) if you prefer:

# Run on port 8000
python -m fremem.server_http

Access the SSE endpoint at http://localhost:8000/sse and send messages to http://localhost:8000/messages.

๐Ÿณ Run with Docker

To run the server in a container:

# Build the image
docker build -t fremem .

# Run the container
# Mount your local data directory to /data inside the container
docker run -p 8000:8000 -v $(pwd)/mcp_memory_data:/data fremem

The server will be available at http://localhost:8000/sse.

1. Ingestion (Adding Context)

Use the included helper script ingest.sh to add files to a specific project.

# ingest.sh <project_name> <file1> <file2> ...

# Example: Project "Thaama"
./ingest.sh project-thaama \
  docs/architecture.md \
  src/main.py

# Example: Project "OpenClaw"
./ingest.sh project-openclaw \
  README.md \
  CONTRIBUTING.md

๐Ÿ’ก Project ID Naming Convention

It is recommended to use a consistent prefix for your project IDs to avoid collisions:

  • project-thaama
  • project-openclaw
  • project-myapp

2. Connect in Editor

Once configured, the following tools will be available to the AI Assistant:

  • memory_search(project_id, q, filter=None): Semantic search. Supports metadata filtering (e.g., filter={"type": "code"}). Returns distance scores.
  • memory_add(project_id, id, text): Manual addition.
  • memory_list_sources(project_id): specific files ingested.
  • memory_delete_source(project_id, source): Remove a specific file.
  • memory_stats(project_id): Get chunk count.
  • memory_reset(project_id): Clear all memories for a project.

The AI will effectively have "long-term memory" of the files you ingested.

๐Ÿ›  Troubleshooting

  • "fremem: command not found" after installing:

    • This means pipx installed the binary to a location not in your system's PATH (e.g., ~/.local/bin).
    • Fix: Run pipx ensurepath and restart your terminal.
    • Manual Fix: Add export PATH="$PATH:$HOME/.local/bin" to your shell config (e.g., ~/.zshrc).
  • "No MCP server found" or Connection errors:

    • Check the output of pwd to ensure your absolute paths in mcp_config.json are 100% correct.
    • Ensure the virtual environment (.venv) is created and dependencies are installed.
  • "Wrong project_id used":

    • The AI sometimes guesses the project ID. You can explicitly tell it: "Use project_id 'project-thaama'".
  • Embedding Model Downloads:

    • On the first run, the server downloads the all-MiniLM-L6-v2 model (approx 100MB). This may cause a slight delay on the first request.

๐Ÿ—‘๏ธ Uninstalling

To remove fremem from your system:

If installed via pipx (Global):

pipx uninstall fremem

If installed locally (Dev): Just delete the directory.

๐Ÿ“ Repo Structure

/
โ”œโ”€โ”€ src/fremem/
โ”‚   โ”œโ”€โ”€ server.py       # Main MCP server entry point
โ”‚   โ”œโ”€โ”€ ingest.py       # Ingestion logic
โ”‚   โ””โ”€โ”€ db.py           # LanceDB wrapper
โ”œโ”€โ”€ ingest.sh           # Helper script
โ”œโ”€โ”€ requirements.txt    # Top-level dependencies
โ”œโ”€โ”€ pyproject.toml      # Package config
โ”œโ”€โ”€ mcp_memory_data/    # Persistent vector storage (gitignored)
โ””โ”€โ”€ README.md

๐Ÿ—บ๏ธ Roadmap

โœ… Completed (v0.1.x)

  • Local vector storage (LanceDB)
  • Multi-project isolation
  • Markdown ingestion
  • PDF ingestion
  • Semantic chunking strategies
  • Windows support + editable install fixes
  • HTTP transport wrapper (SSE)
  • Fix resource listing errors (clean MCP UX)
  • Robust docs + 5-minute setup
  • Multi-IDE support (Windsurf, Cursor-compatible MCP)

๐Ÿš€ Near-Term (v0.2.x โ€“ Production Readiness)

๐Ÿง  Memory Governance

  • List memory sources per project
  • Delete memory by source (file-level deletion)
  • Reset memory per project
  • Replace / reindex mode (prevent stale chunks)
  • Memory stats (chunk count, last updated, size)

๐ŸŽฏ Retrieval Quality

  • Metadata filtering (e.g., type=decision | rules | context)
  • Similarity scoring in results
  • Hybrid search (semantic + keyword)
  • Return evidence + similarity scores with search results
  • Configurable top_k defaults per project

โš™๏ธ Dev Workflow

  • Auto-ingest on git commit / file change
  • mcp-memory init <project-id> bootstrap command
  • Project templates (PROJECT_CONTEXT.md, DECISIONS.md, AI_RULES.md)

๐Ÿง  Advanced RAG (v0.3.x โ€“ Differentiators)

  • Hierarchical retrieval (summary-first, detail fallback)
  • Memory compression (old chunks โ†’ summaries)
  • Temporal ranking (prefer newer decisions)
  • Scoped retrieval (planner vs coder vs reviewer agents)
  • Query rewrite / expansion for better recall

๐Ÿข Team / SaaS Mode (Optional)

Philosophy: Local-first remains the default. SaaS is an optional deployment mode.

๐Ÿ” Auth & Multi-Tenancy

  • Project-level auth (API keys or JWT)
  • Org / team separation
  • Audit logs for memory changes

โ˜๏ธ Remote Storage Backends (Pluggable)

  • S3-compatible vector store backend
  • Postgres / pgvector backend
  • Sync & Federation (Local โ†” Remote)

๐Ÿšซ Non-Goals

  • โŒ No mandatory cloud dependency
  • โŒ No vendor lock-in
  • โŒ No chat history as โ€œmemoryโ€ by default (signal > noise)
  • โŒ No model fine-tuning

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fremem-0.2.1.tar.gz (21.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fremem-0.2.1-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file fremem-0.2.1.tar.gz.

File metadata

  • Download URL: fremem-0.2.1.tar.gz
  • Upload date:
  • Size: 21.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for fremem-0.2.1.tar.gz
Algorithm Hash digest
SHA256 19ce851b967ead1d79964abfa08dbf7fdafa253c1f0707000b14bec6ba9f3a16
MD5 dce7e68298273e98eeede3408440431d
BLAKE2b-256 64216a2635703862bf6c14d83ff9082d0a0f58d68e8160f6dee8e09e1c015807

See more details on using hashes here.

File details

Details for the file fremem-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: fremem-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for fremem-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b00506a83959666a13aefd1d08bf035029e998b2e6fbc1a483e1b2e420dfcfa3
MD5 8f7ac48935d4cad91b6e667900c9cb45
BLAKE2b-256 5654df8d5ba517c9c3211060cd769139423fe25314162ae6a88ef5aeb249db04

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page