Skip to content
VS Code

Realurls for VS Code

io.github.zhouchungong/realurls

Which domain officially belongs to which software product or company. Ownership only, never safety.

client:VS Code transport:stdio runtime:npm

Install Realurls in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "realurls-api",
      "description": "REALURLS_API",
      "password": true
    }
  ],
  "servers": {
    "realurls": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@realurls/mcp"
      ],
      "env": {
        "REALURLS_API": "${input:realurls-api}"
      }
    }
  }
}

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

Realurls in other clients