Skip to content
VS Code

mnemon mcp for VS Code

io.github.nikitacometa/mnemon-mcp

Persistent layered memory for AI agents. SQLite FTS5, fact versioning, zero-cloud.

client:VS Code transport:stdio runtime:npm

Install mnemon mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mnemon-db-path",
      "description": "MNEMON_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mnemon-embedding-provider",
      "description": "MNEMON_EMBEDDING_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mnemon-embedding-api-key",
      "description": "MNEMON_EMBEDDING_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mnemon-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mnemon-mcp"
      ],
      "env": {
        "MNEMON_DB_PATH": "${input:mnemon-db-path}",
        "MNEMON_EMBEDDING_PROVIDER": "${input:mnemon-embedding-provider}",
        "MNEMON_EMBEDDING_API_KEY": "${input:mnemon-embedding-api-key}"
      }
    }
  }
}

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

mnemon mcp in other clients