Skip to content
VS Code

dns aid for VS Code

io.github.dns-aid/dns-aid

Discover and publish AI agents via DNS using SVCB records (RFC 9460)

client:VS Code transport:stdio runtime:pypi

Install dns aid in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dns-aid-backend",
      "description": "DNS_AID_BACKEND",
      "password": true
    }
  ],
  "servers": {
    "dns-aid": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "dns-aid"
      ],
      "env": {
        "DNS_AID_BACKEND": "${input:dns-aid-backend}"
      }
    }
  }
}

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

dns aid in other clients