Skip to content
VS Code

pubrio for VS Code

io.github.pubrio/pubrio

Glocalized business data layer for AI agents. Search companies, people, and signals.

client:VS Code transport:stdio runtime:npm

Install pubrio in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pubrio-api-key",
      "description": "PUBRIO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pubrio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pubrio-mcp-server"
      ],
      "env": {
        "PUBRIO_API_KEY": "${input:pubrio-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

pubrio in other clients