Skip to content
VS Code

vibo memory for VS Code

io.github.vnbochkarev-netizen/vibo-memory

Memory for AI agents: persistent L1/L2/L3, web-search savings, thread memory.

client:VS Code transport:stdio runtime:npm

Install vibo memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vibo-api-key",
      "description": "VIBO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "vibo-memory": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@vibo-dev/vibo-mcp"
      ],
      "env": {
        "VIBO_API_KEY": "${input:vibo-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

vibo memory in other clients