Skip to content
VS Code

verity mcp for VS Code

io.github.meloliva14/verity-mcp

Fail-closed verify-before-you-act gate for AI agents. Signed receipts. Pay-per-call via x402.

client:VS Code transport:stdio runtime:pypi

Install verity mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "verity-suite-url",
      "description": "VERITY_SUITE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verity-engine-url",
      "description": "VERITY_ENGINE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verity-price-quick",
      "description": "VERITY_PRICE_QUICK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verity-price-grounded",
      "description": "VERITY_PRICE_GROUNDED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verity-price-pro",
      "description": "VERITY_PRICE_PRO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verity-price-suite",
      "description": "VERITY_PRICE_SUITE",
      "password": true
    }
  ],
  "servers": {
    "verity-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "verity-mcp"
      ],
      "env": {
        "VERITY_SUITE_URL": "${input:verity-suite-url}",
        "VERITY_ENGINE_URL": "${input:verity-engine-url}",
        "VERITY_PRICE_QUICK": "${input:verity-price-quick}",
        "VERITY_PRICE_GROUNDED": "${input:verity-price-grounded}",
        "VERITY_PRICE_PRO": "${input:verity-price-pro}",
        "VERITY_PRICE_SUITE": "${input:verity-price-suite}"
      }
    }
  }
}

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

verity mcp in other clients