DNS, IP info, SSL, WHOIS, ping for AI agents
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-rog0x-network": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Network diagnostics tools for AI agents, exposed via the Model Context Protocol (MCP).
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for io.github.rog0x/network and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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