mcp-godaddy
OSSAn MCP server for GoDaddy domains and DNS records.
MCP server
install
claude mcp add mcp-godaddy -- node /opt/mcp/mcp-godaddy/build/index.js
# env: GODADDY_KEY, GODADDY_SECRETSame six-verb shape as the Cloudflare server: list domains, list records, get a record, then create, update, or delete. That is the whole DNS loop I run when I stand a subdomain up, so the agent can do it while I stay in the diff.
The one gotcha
GoDaddy does not use a Bearer token. Auth is their own header scheme: Authorization: sso-key KEY:SECRET, with the key and secret joined by a colon in one string. Get that format wrong and every call comes back 401 with no hint why. The server builds the header once in a shared fetch wrapper, so the key pair is set in one place and every tool inherits it.