From domain-whois-mcp
Look up domain name registration info via WHOIS and RDAP — availability, registrar, expiration, nameservers, DNSSEC. Use when the user asks about a specific domain's registration, whether a domain is taken, or wants raw WHOIS/RDAP data. Orchestrates the 8 domain-whois MCP tools.
How this skill is triggered — by the user, by Claude, or both
Slash command
/domain-whois-mcp:domain-lookupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the `domain-whois-mcp` tools to answer questions about domain names.
Use the domain-whois-mcp tools to answer questions about domain names.
If the user is brainstorming a project name, route to the project-name-finder skill instead.
| User Intent | Tool | Key Parameters |
|---|---|---|
| "Who owns example.com?" | whois_lookup | domain |
| "Is example.com available?" | domain_check | domain, method=auto |
| "Check these 10 domains" | bulk_domain_check | domains, concurrency |
| "RDAP info for example.com" | rdap_lookup | domain |
| "What WHOIS server handles .xyz?" | tld_info | tld |
| "Send raw WHOIS to specific server" | whois_raw | query, server |
| "Which TLDs support RDAP?" | rdap_bootstrap_info | filter (optional) |
| "Find WHOIS server for .tr" | find_whois_server | domain |
Use domain_check with method auto. It tries RDAP first (faster), falls back to WHOIS.
bulk_domain_check({
domains: ["brand.com", "brand.io", "brand.dev", "brand.ai", "brand.co"],
concurrency: 5
})
whois_lookup for WHOIS text + parsed fields, rdap_lookup for structured JSON.
Call tld_info first, then pick the appropriate lookup tool based on what it reports.
clientTransferProhibited, serverDeleteProhibited indicate registry locksDNSSEC: signedDelegation means the domain uses DNSSECrdap_bootstrap_info)npx claudepluginhub kemalabuteliyte/domain-whois-mcp --plugin domain-whois-mcpGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.