dns-lookup
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDNS Lookup via MCP
基于MCP的DNS查询
Use this skill when you need to look up DNS records, perform reverse DNS, check WHOIS data, or verify nameservers. Zero auth required.
当你需要查询DNS记录、执行反向DNS、检查WHOIS数据或者验证域名服务器时使用本技能,无需任何身份验证。
Available Tools
可用工具
| Tool | What it does |
|---|---|
| Look up A, AAAA, MX, TXT, NS, CNAME, SOA, SRV, or PTR records |
| Reverse DNS (PTR) lookup on an IP address |
| Resolve A, AAAA, MX, TXT, NS, CNAME in one call |
| Get nameserver (NS) records for a domain |
| Query WHOIS data (follows IANA referrals to registrar) |
| 工具 | 功能说明 |
|---|---|
| 查询A、AAAA、MX、TXT、NS、CNAME、SOA、SRV或PTR记录 |
| 对IP地址执行反向DNS(PTR)查询 |
| 单次调用即可解析A、AAAA、MX、TXT、NS、CNAME记录 |
| 获取域名的域名服务器(NS)记录 |
| 查询WHOIS数据(遵循IANA跳转规则获取注册商数据) |
Workflow
使用流程
- For general domain investigation: start with to see everything at once
resolve_all - For specific record types: use with the
dns_lookupparametertype - For IP investigation: use to find the hostname
reverse_dns - For domain ownership: use
whois
- 通用域名调查:优先使用一次性获取所有记录
resolve_all - 特定记录类型查询:使用并指定
dns_lookup参数type - IP地址调查:使用查找对应的主机名
reverse_dns - 域名所有权查询:使用
whois
Key Patterns
核心使用场景
- with
dns_lookupis the go-to for email delivery debuggingtype: "MX" - returns all common record types in one call — most efficient for initial investigation
resolve_all - follows IANA referrals automatically, so it works for any TLD
whois - No API keys or auth needed — uses Node.js built-in DNS and public WHOIS servers
- 携带参数的
type: "MX"是调试邮件投递问题的首选dns_lookup - 单次调用返回所有常用记录类型,是初步调查最高效的方式
resolve_all - 自动遵循IANA跳转规则,支持所有顶级域名查询
whois - 无需API密钥或身份验证——基于Node.js内置DNS模块和公共WHOIS服务器实现