Configure DNS records A CNAME MX TXT via API
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill dns-configuration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dns Configuration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-dns-configuration)More formats (shields.io, HTML) on the badges page.
---
name: dns-configuration
description: "Configure DNS records A CNAME MX TXT via API"
---
# DNS Configuration
## Common Records
| Type | Purpose | Example |
|------|---------|---------|
| A | IPv4 address | example.com -> 1.2.3.4 |
| CNAME | Alias | www -> example.com |
| MX | Mail server | @ -> mail.example.com |
| TXT | Verification | SPF, DKIM, domain verify |
## Via API (Cloudflare)
```bash
curl -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE/dns_records" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"type":"A","name":"example.com","content":"1.2.3.4","ttl":120}'
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!