Skip to content
VS Code

veris for VS Code

io.github.vighriday/veris

Behavioral verification intelligence for AI coding agents. 17 MCP tools. Local-first. MIT.

client:VS Code transport:stdio runtime:npm

Install veris in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "veris-state-disabled",
      "description": "VERIS_STATE_DISABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veris-plugins-disabled",
      "description": "VERIS_PLUGINS_DISABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veris-confidence-threshold",
      "description": "VERIS_CONFIDENCE_THRESHOLD",
      "password": true
    }
  ],
  "servers": {
    "veris": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "veris-core"
      ],
      "env": {
        "VERIS_STATE_DISABLED": "${input:veris-state-disabled}",
        "VERIS_PLUGINS_DISABLED": "${input:veris-plugins-disabled}",
        "VERIS_CONFIDENCE_THRESHOLD": "${input:veris-confidence-threshold}"
      }
    }
  }
}

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

veris in other clients