Skip to content
VS Code

Federal Regulations for VS Code

io.github.stark256-spec/regulations-mcp

Search the Federal Register, read & diff CFR sections, query Regulations.gov. Any LLM supported.

client:VS Code transport:stdio runtime:pypi

Install Federal Regulations in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "regulations-gov-api-key",
      "description": "REGULATIONS_GOV_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "regulations-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "regulations-mcp"
      ],
      "env": {
        "REGULATIONS_GOV_API_KEY": "${input:regulations-gov-api-key}"
      }
    }
  }
}

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

Federal Regulations in other clients