Skip to content
VS Code

bovedia for VS Code

io.github.jmpdsevilla/bovedia

Memoria personal para Claude Code en notas Markdown; no carga el contexto a ciegas.

client:VS Code transport:stdio runtime:npm

Install bovedia in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kb-memory-root",
      "description": "KB_MEMORY_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kb-enable-annotations",
      "description": "KB_ENABLE_ANNOTATIONS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kb-tools",
      "description": "KB_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "bovedia": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bovedia"
      ],
      "env": {
        "KB_MEMORY_ROOT": "${input:kb-memory-root}",
        "KB_ENABLE_ANNOTATIONS": "${input:kb-enable-annotations}",
        "KB_TOOLS": "${input:kb-tools}"
      }
    }
  }
}

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

bovedia in other clients