Skip to content
VS Code

mnemo for VS Code

io.github.dancenitra/mnemo

Self-correcting agent memory + MCP server: recall, supersede/revert/review corrections, erasure.

client:VS Code transport:stdio runtime:pypi

Install mnemo in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mnemo-path",
      "description": "MNEMO_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mnemo-echo-guard",
      "description": "MNEMO_ECHO_GUARD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mnemo-embed-url",
      "description": "MNEMO_EMBED_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mnemo-embed-model",
      "description": "MNEMO_EMBED_MODEL",
      "password": true
    }
  ],
  "servers": {
    "mnemo": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "agora-mnemo"
      ],
      "env": {
        "MNEMO_PATH": "${input:mnemo-path}",
        "MNEMO_ECHO_GUARD": "${input:mnemo-echo-guard}",
        "MNEMO_EMBED_URL": "${input:mnemo-embed-url}",
        "MNEMO_EMBED_MODEL": "${input:mnemo-embed-model}"
      }
    }
  }
}

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

mnemo in other clients