Exposes DNS lookups, IP geolocation, SSL certificate inspection, WHOIS queries, and HTTP latency testing to Claude through Node.js built-in modules. You get A/AAAA/MX/TXT records, reverse DNS, and propagation checks across public resolvers. IP info pulls from ip-api.com for geolocation and ASN data. SSL checks give you certificate chains, expiry dates, and cipher details. HTTP ping runs multiple requests and returns p95 latency alongside min/max/avg stats. Useful when you're debugging connectivity, verifying DNS propagation after a change, checking certificate validity before expiry, or measuring endpoint performance without leaving your Claude conversation.
Network diagnostics tools for AI agents, exposed via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
dns_lookup | Resolve domains to DNS records (A, AAAA, MX, TXT, NS, CNAME, SOA). Reverse DNS. Propagation check across public DNS servers. |
ip_info | Geolocation and network info for an IP address — country, city, ISP, ASN, coordinates. IPv4 and IPv6. |
ssl_check | Inspect SSL/TLS certificates — validity, issuer, expiry, SANs, certificate chain, cipher, protocol. |
whois_lookup | WHOIS data for a domain — registrar, creation/expiry dates, nameservers, status. |
http_ping | Measure HTTP response time over N requests. Returns avg, min, max, p95 latency and success rate. |
npm install
npm run build
Add to your claude_desktop_config.json:
{
"mcpServers": {
"network-tools": {
"command": "node",
"args": ["D:/products/mcp-servers/mcp-network-tools/dist/index.js"]
}
}
}
dns, tls, net, https, http (no external runtime dependencies beyond MCP SDK)dns_lookup({ domain: "example.com", record_types: ["A", "MX"] })
dns_lookup({ domain: "8.8.8.8", mode: "reverse" })
dns_lookup({ domain: "example.com", mode: "propagation" })
ip_info({ ip: "1.1.1.1" })
ssl_check({ host: "example.com" })
whois_lookup({ domain: "example.com" })
http_ping({ url: "https://example.com", count: 10 })
MIT