Skip to content
VS Code

memory fts for VS Code

io.github.kurovu146/memory-fts

Long-term memory for Claude Code with SQLite FTS5 search and BM25 ranking

client:VS Code transport:stdio runtime:npm

Install memory fts in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-db-path",
      "description": "MEMORY_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "memory-fts": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "claude-memory-fts"
      ],
      "env": {
        "MEMORY_DB_PATH": "${input:memory-db-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

memory fts in other clients