Skip to content
VS Code

veris for VS Code

io.github.jakeyoung1/veris

Provenance-first web + SEC EDGAR data for AI agents: every fact carries its verifiable source.

client:VS Code transport:stdio runtime:npm

Install veris in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "brave-api-key",
      "description": "BRAVE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sec-user-agent",
      "description": "SEC_USER_AGENT",
      "password": true
    }
  ],
  "servers": {
    "veris": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "veris-mcp"
      ],
      "env": {
        "BRAVE_API_KEY": "${input:brave-api-key}",
        "SEC_USER_AGENT": "${input:sec-user-agent}"
      }
    }
  }
}

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