Skip to content
VS Code

Porkbun DNS ๐Ÿท for VS Code

io.github.major/porkbun

Manage DNS records, domains, DNSSEC, SSL certificates via MCP

client:VS Code transport:stdio runtime:pypi

Install Porkbun DNS ๐Ÿท in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "porkbun-api-key",
      "description": "PORKBUN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "porkbun-secret-key",
      "description": "PORKBUN_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "porkbun-get-muddy",
      "description": "PORKBUN_GET_MUDDY",
      "password": true
    }
  ],
  "servers": {
    "porkbun": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "porkbun-mcp"
      ],
      "env": {
        "PORKBUN_API_KEY": "${input:porkbun-api-key}",
        "PORKBUN_SECRET_KEY": "${input:porkbun-secret-key}",
        "PORKBUN_GET_MUDDY": "${input:porkbun-get-muddy}"
      }
    }
  }
}

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

Porkbun DNS ๐Ÿท in other clients