Skip to content
VS Code

SuperMemory for VS Code

io.github.yashvanthange/supermemory

MCP-first agent learning: capture failures, validate lessons, retrieve context, improve.

client:VS Code transport:stdio runtime:pypi

Install SuperMemory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "supermemory-storage-path",
      "description": "SUPERMEMORY_STORAGE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "uall-data-dir",
      "description": "UALL_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "supermemory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "supermemory-agent"
      ],
      "env": {
        "SUPERMEMORY_STORAGE_PATH": "${input:supermemory-storage-path}",
        "UALL_DATA_DIR": "${input:uall-data-dir}"
      }
    }
  }
}

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

SuperMemory in other clients