steipete/agent-scripts

cloudflare-registrar

Cloudflare Registrar: domain availability, prices, registration via mcporter.

First seen May 11, 2026

Installation

$ npx skills add steipete/agent-scripts --skill cloudflare-registrar

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from steipete/agent-scripts · top by installs.

npx skills add steipete/agent-scripts

Browse all from steipete/agent-scripts

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 6.6K
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,488 B
  • docs SUMMARY.md 105 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 93 installs

SKILL.md

Cloudflare Registrar

Use for Cloudflare Registrar domain availability, pricing, listing, and registration.

Defaults

  • MCP: cloudflare-openclaw
  • Account: OPENCLAWCLOUDFLAREACCOUNT_ID
  • Token: OPENCLAWCLOUDFLAREAPI_TOKEN
  • Secrets: follow the root secret rule; export only needed Cloudflare vars for one command.

Guardrails

  • Always run domain-check immediately before registration.
  • Registration is billable/non-refundable. Ask Peter for explicit confirmation before POST /registrar/registrations.
  • Do not print tokens.

Commands

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`
  });
}'