Claude-skill-registry Cloudflare DNS Analytics
This skill should be used when the user asks about "DNS performance", "zone settings", "DNS analytics", "domain configuration", "DNS report", "zone list", "DNS troubleshooting", "DNSSEC", "DNS latency", or needs to monitor and optimize Cloudflare DNS.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cloudflare-dns-analytics" ~/.claude/skills/majiayu000-claude-skill-registry-cloudflare-dns-analytics && rm -rf "$T"
manifest:
skills/data/cloudflare-dns-analytics/SKILL.mdsource content
Cloudflare DNS Analytics
Monitor DNS performance and configuration using the DNS Analytics MCP server.
Available Tools
| Tool | Purpose |
|---|---|
| List all zones under the active account |
| Get DNS performance report for a zone over a time period |
| View DNS settings at the account level |
| View DNS settings for a specific zone |
Common Workflows
DNS Health Check
- Use
to identify zoneszones_list - Use
for each zone to check performancedns_report - Review metrics for latency, query volume, errors
Configuration Audit
- Use
for account-level settingsshow_account_dns_settings - Use
for zone-specific settingsshow_zone_dns_settings - Compare settings across zones for consistency
Performance Investigation
- Identify the zone with
zones_list - Pull
for the relevant time framedns_report - Analyze query patterns and response times
DNS Report Metrics
The DNS report typically includes:
- Query volume over time
- Response time distribution
- Query types (A, AAAA, CNAME, etc.)
- Response codes (NOERROR, NXDOMAIN, etc.)
- Geographic distribution
Integration with Workers
For Workers using custom domains:
- Verify zone configuration with
show_zone_dns_settings - Check DNS report for the zone
- Correlate with Workers observability data
Troubleshooting
| Issue | Investigation Steps |
|---|---|
| Slow DNS resolution | Check for latency metrics |
| Missing records | Verify |
| High error rates | Review response codes in |
| Zone not found | List zones with |
Tips
- Zone IDs from
are needed for other operationszones_list - DNS reports can span custom time ranges
- Account settings may override zone settings
- Use with observability tools for full-stack debugging