Skip to content
VS Code

veracium for VS Code

io.github.veracium-ai/veracium

Provenance-aware memory for AI agents: quarantine, abstention gate, supersession-with-history.

client:VS Code transport:stdio runtime:pypi

Install veracium in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veracium-db-path",
      "description": "VERACIUM_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veracium-user",
      "description": "VERACIUM_USER",
      "password": true
    }
  ],
  "servers": {
    "veracium": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "veracium"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "VERACIUM_DB_PATH": "${input:veracium-db-path}",
        "VERACIUM_USER": "${input:veracium-user}"
      }
    }
  }
}

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

veracium in other clients