Skip to content
VS Code

Rival Regulatory Toolkit for VS Code

io.github.rival-intelligence/rival-regulatory-toolkit

Read-only regulatory source retrieval, citation tracing, authority metadata, and recent filings.

client:VS Code transport:stdio runtime:npm

Install Rival Regulatory Toolkit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rival-api-key",
      "description": "RIVAL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rival-api-base-url",
      "description": "RIVAL_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rival-fixture-mode",
      "description": "RIVAL_FIXTURE_MODE",
      "password": true
    }
  ],
  "servers": {
    "rival-regulatory-toolkit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tryrival/regulatory-toolkit"
      ],
      "env": {
        "RIVAL_API_KEY": "${input:rival-api-key}",
        "RIVAL_API_BASE_URL": "${input:rival-api-base-url}",
        "RIVAL_FIXTURE_MODE": "${input:rival-fixture-mode}"
      }
    }
  }
}

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

Rival Regulatory Toolkit in other clients