CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
br0ski777 avatar

DNS Lookup API

br0ski777/dns-lookup-x402
1 toolsSSEregistry active
Summary

Queries DNS records through Cloudflare's resolver with support for A, AAAA, MX, TXT, CNAME, and NS lookups. This is a straightforward wrapper around DNS queries, useful when you need Claude to troubleshoot domain configuration, verify email server setup, or check nameserver delegation without leaving the conversation. The x402 micropayment integration suggests metered usage, though the repository itself is light on implementation details. Runs as a remote server over SSE transport, so you're hitting the hosted endpoint rather than running queries locally. Reach for this when you want programmatic DNS inspection without switching to dig or nslookup.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Tools

Public tool metadata for what this MCP can expose to an agent.

1 tools
network_lookup_dnsUse this when you need to look up DNS records for a domain. Returns all matching records in JSON via Cloudflare DNS-over-HTTPS. Returns: 1. records array with type, name, data, TTL 2. Supports A, AAA2 params

Use this when you need to look up DNS records for a domain. Returns all matching records in JSON via Cloudflare DNS-over-HTTPS. Returns: 1. records array with type, name, data, TTL 2. Supports A, AAA

Parameters* required
domainstring
Domain name to lookup (e.g. example.com)
typestring
DNS record type: A, AAAA, MX, TXT, CNAME, NS, SOA, SRV (default: A)

DNS Lookup API

MCP Server x402 License: MIT

Lookup DNS records (A, AAAA, MX, TXT, CNAME, NS, SOA, SRV) via Cloudflare DNS-over-HTTPS. Fast and reliable. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.

Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.

Quickstart -- MCP

Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):

{
  "mcpServers": {
    "dns-lookup": {
      "url": "https://dns-lookup.api.klymax402.com/mcp"
    }
  }
}

Quickstart -- HTTP (x402)

curl -X POST "https://dns-lookup.api.klymax402.com/api/lookup" \
  -H "Content-Type: application/json" \
  -d '{"domain":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response body

Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.

Tools

ToolMethodPathPriceDescription
network_lookup_dnsPOST/api/lookup$0.005Lookup DNS records for a domain

network_lookup_dns

Use this when you need to look up DNS records for a domain. Returns all matching records in JSON via Cloudflare DNS-over-HTTPS.

Parameters

NameTypeRequiredDescription
domainstringyesDomain name to lookup (e.g. example.com)
typestringnoDNS record type: A, AAAA, MX, TXT, CNAME, NS, SOA, SRV (default: A)

Example response:

{"domain":"example.com","type":"A","records":[{"name":"example.com","type":"A","data":"93.184.216.34","ttl":3600}],"queryTime":12,"resolver":"cloudflare"}

When to use: verifying DNS configuration, checking MX records before email setup, auditing TXT records for SPF/DKIM/DMARC, and debugging domain resolution issues.

Not for: SSL certificate check (use security_check_ssl), WHOIS domain info (use domain_lookup_intelligence), HTTP header analysis (use network_analyze_headers).

Example agent prompts

  • "Look up DNS records for a domain"

Payment

  • Protocol: x402 -- HTTP-native pay-per-call, no signup, no API key
  • Network: Base L2 (eip155:8453)
  • Asset: USDC
  • Facilitator: Coinbase CDP (primary), PayAI (fallback)
  • Also reachable via ATXP (OAuth-wrapped x402, RFC 9728 protected-resource metadata)

Part of klymax402

100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.

  • Catalog: https://klymax402.com/llms.txt
  • Full API reference: https://klymax402.com/llms-full.txt
  • Live stats: https://klymax402.com/stats

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Cloud & Infrastructure
Registryactive
TransportSSE
UpdatedMay 16, 2026
View on GitHub

More from br0ski777

  • Markdown to HTML API
  • Web Scraper to Markdown API
  • Cron Parser API1
  • Hyperliquid Vaults API
  • Language Detector API
  • PDF Generator API
  • QR Code Generator API
  • Token Price API
  • Twitter Scraper API
  • Address Validator API
  • Color Palette Generator API
  • Cross-Chain Bridge Route API
  • Email Deliverability Audit API
  • Email Finder API
  • ENS Resolver API
  • Event Resolver API
  • HTML to Markdown API
  • HTTP Headers Analyzer API
  • Hyperliquid Perp Market Data API
  • JWT Decoder API
  • Keyword Research API
  • Prediction Markets API
  • Research Report API
  • Screenshot & PDF Capture API

Related Cloud & Infrastructure MCP Servers

View all →
dailyaiagents-cpu avatar
Monthly Burn

io.github.dailyaiagents-cpu/monthly-burn

Aggregates monthly cash burn across Anthropic, ElevenLabs, Cloudflare, Stripe fees, GitHub Action...
downatthebottomofthemolehole avatar
Infracost

io.github.downatthebottomofthemolehole/infracost

MCP server for Infracost CLI integration - cloud cost estimates for Infrastructure as Code
evozim avatar
CloudScale-Sim

io.github.evozim/cloudscale-sim

Cloud infrastructure auto-scaling load test simulator.
expertvagabond avatar
Oracle Cloud

io.github.expertvagabond/oracle-cloud

Oracle Cloud Infrastructure MCP server
getrelove avatar
Solve

io.github.getrelove/solve

Cloudflare Turnstile CAPTCHA solver for AI agents. $0.002/call, 100 free on signup. P95 2.2s.
itunified-io avatar
Tailscale MCP Server

io.github.itunified-io/tailscale

Secure MCP access for private infrastructure over Tailscale — 48 tools across 9 domains