PluginBench
MCP Server

Porkbun DNS 🐷 MCP Server

io.github.major/porkbun

What is the Porkbun DNS 🐷 MCP server?

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

How to install Porkbun DNS 🐷

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • PORKBUN_API_KEY
    required

    Porkbun API key

  • PORKBUN_SECRET_KEY
    required

    Porkbun secret key

  • PORKBUN_GET_MUDDY

    Enable write operations (default: false for read-only mode)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "porkbun": {
      "command": "uvx",
      "args": [
        "porkbun-mcp"
      ],
      "env": {
        "PORKBUN_API_KEY": "<YOUR_PORKBUN_API_KEY>",
        "PORKBUN_SECRET_KEY": "<YOUR_PORKBUN_SECRET_KEY>",
        "PORKBUN_GET_MUDDY": "<YOUR_PORKBUN_GET_MUDDY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "porkbun": {
      "command": "uvx",
      "args": [
        "porkbun-mcp"
      ],
      "env": {
        "PORKBUN_API_KEY": "<YOUR_PORKBUN_API_KEY>",
        "PORKBUN_SECRET_KEY": "<YOUR_PORKBUN_SECRET_KEY>",
        "PORKBUN_GET_MUDDY": "<YOUR_PORKBUN_GET_MUDDY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "porkbun": {
      "command": "uvx",
      "args": [
        "porkbun-mcp"
      ],
      "env": {
        "PORKBUN_API_KEY": "<YOUR_PORKBUN_API_KEY>",
        "PORKBUN_SECRET_KEY": "<YOUR_PORKBUN_SECRET_KEY>",
        "PORKBUN_GET_MUDDY": "<YOUR_PORKBUN_GET_MUDDY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "porkbun": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "porkbun-mcp"
      ],
      "env": {
        "PORKBUN_API_KEY": "<YOUR_PORKBUN_API_KEY>",
        "PORKBUN_SECRET_KEY": "<YOUR_PORKBUN_SECRET_KEY>",
        "PORKBUN_GET_MUDDY": "<YOUR_PORKBUN_GET_MUDDY>"
      }
    }
  }
}
Claude Code
claude mcp add porkbun --env PORKBUN_API_KEY=<YOUR_PORKBUN_API_KEY> --env PORKBUN_SECRET_KEY=<YOUR_PORKBUN_SECRET_KEY> --env PORKBUN_GET_MUDDY=<YOUR_PORKBUN_GET_MUDDY> -- uvx porkbun-mcp

Related MCP servers

Query system performance metrics via MCP - CPU, memory, disk I/O, network, processes

View repository →