Skip to content
VS Code

soulsketch for VS Code

io.github.bytewizard42i/soulsketch

Portable, user-owned AI memory packs: read, validate, fingerprint, diff, and observe

client:VS Code transport:stdio runtime:npm

Install soulsketch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "soulsketch-allowed-roots",
      "description": "SOULSKETCH_ALLOWED_ROOTS",
      "password": true
    }
  ],
  "servers": {
    "soulsketch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@soulsketch/mcp-server"
      ],
      "env": {
        "SOULSKETCH_ALLOWED_ROOTS": "${input:soulsketch-allowed-roots}"
      }
    }
  }
}

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

soulsketch in other clients