Install
openclaw skills install godaddy-apiComplete GoDaddy API skill with shell scripts + MCP server for domains, DNS, certificates, shoppers, subscriptions, agreements, countries, and aftermarket listings.
openclaw skills install godaddy-apiexport GODADDY_API_BASE_URL="https://api.godaddy.com" # or https://api.ote-godaddy.com
export GODADDY_API_KEY="your-key"
export GODADDY_API_SECRET="your-secret"
Keys: https://developer.godaddy.com/keys
scripts/gd-domains.sh — list/get/availability, validate purchase, purchase, renew, transfer, update, update contacts, delete, privacy on/off, domain agreements get/acceptscripts/gd-dns.sh — get all/type/name, patch add, replace all/type/type+name, delete type+namescripts/gd-certs.sh — create/validate/get/actions/download/renew/reissue/revoke/verify domain controlscripts/gd-shoppers.sh — get/update/delete shopperscripts/gd-subscriptions.sh — list/get/cancel subscriptionscripts/gd-agreements.sh — list legal agreementsscripts/gd-countries.sh — list countriesscripts/gd-aftermarket.sh — list/get aftermarket listingsDestructive/financial actions prompt for confirmation.
Path: scripts/mcp-server/
cd scripts/mcp-server
npm install
npm run build
node dist/index.js
Exposes MCP tools for all skill operations (domains, DNS, certs, shoppers, subscriptions, agreements, countries, aftermarket).
Example MCP config:
{
"mcpServers": {
"godaddy": {
"command": "node",
"args": ["path/to/mcp-server/dist/index.js"],
"env": {
"GODADDY_API_BASE_URL": "https://api.godaddy.com",
"GODADDY_API_KEY": "",
"GODADDY_API_SECRET": ""
}
}
}
}
references/endpoints.md — complete endpoint mapreferences/auth-and-env.md — auth/env setupreferences/request-bodies.md — payload examplesreferences/error-handling.md — troubleshootingreferences/safety-playbook.md — safe operation patterns