Skip to content
VS Code

Vivory Verification Gateway for VS Code

io.github.jayjodev/vivory-mcp-verification

98 MCP tools for verifiable AI: citations, law, KYB, peer review, forecast, media provenance.

client:VS Code transport:stdio runtime:pypi

Install Vivory Verification Gateway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vivory-api-key",
      "description": "VIVORY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vivory-api-base",
      "description": "VIVORY_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "vivory-mcp-verification": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vivory-mcp-verification"
      ],
      "env": {
        "VIVORY_API_KEY": "${input:vivory-api-key}",
        "VIVORY_API_BASE": "${input:vivory-api-base}"
      }
    }
  }
}

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

Vivory Verification Gateway in other clients