HomeDatabases & Data › Local Memory

Local Memory

Persistent local AI memory. SQLite + FTS5 + vector search, knowledge graph. No cloud, no API keys.

TypeScript
★ 14 stars Last pushed 2026-09-21 License: MIT

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 2.4.3)

npx -y @studiomeyer/[email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "local-memory-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@studiomeyer/[email protected]"
      ],
      "env": {
        "MEMORY_DB_PATH": "<YOUR_VALUE>",
        "MEMORY_EMBED_DISABLED": "<YOUR_VALUE>",
        "MEMORY_EMBED_MODEL": "<YOUR_VALUE>",
        "MEMORY_EMBED_CACHE_DIR": "<YOUR_VALUE>"
      }
    }
  }
}
  • MEMORY_DB_PATH — Custom path for the SQLite database file
  • MEMORY_EMBED_DISABLED — Disable the local embedding pipeline (forces FTS5-only search). Useful in restricted networks where the model can't be downloaded.
  • MEMORY_EMBED_MODEL — Override the embedding model id (defaults to Xenova/multilingual-e5-small).
  • MEMORY_EMBED_CACHE_DIR — Override the Transformers.js cache directory (defaults to the OS data dir).

Related servers

Data from the Official MCP Registry