Coding & Debugging
PromptBeginner5 minmarkdown
application security (OWASP
STRIDE threat modeling) and code architecture
29
Agent skill for cloudflare-registrar
Loading actions...
STRIDE threat modeling) and code architecture
param2: value2)'
capitalization
Use for Cloudflare Registrar domain availability, pricing, listing, and registration.
cloudflare-openclawOPENCLAW_CLOUDFLARE_ACCOUNT_IDOPENCLAW_CLOUDFLARE_API_TOKENdomain-check immediately before registration.POST /registrar/registrations.Check availability/pricing:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "POST",
path: `/accounts/${accountId}/registrar/domain-check`,
body: { domains: ["example.com"] }
});
}'
Register after confirmation:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "POST",
path: `/accounts/${accountId}/registrar/registrations`,
body: { domain_name: "example.com", auto_renew: false, privacy_mode: "redaction" }
});
}'
List registrations:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "GET",
path: `/accounts/${accountId}/registrar/registrations`
});
}'