CAT
/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

Cross AI Tools

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
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Network

rog0x/mcp-network-tools
STDIOregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

mcp-network-tools

Network diagnostics tools for AI agents, exposed via the Model Context Protocol (MCP).

Tools

ToolDescription
dns_lookupResolve domains to DNS records (A, AAAA, MX, TXT, NS, CNAME, SOA). Reverse DNS. Propagation check across public DNS servers.
ip_infoGeolocation and network info for an IP address — country, city, ISP, ASN, coordinates. IPv4 and IPv6.
ssl_checkInspect SSL/TLS certificates — validity, issuer, expiry, SANs, certificate chain, cipher, protocol.
whois_lookupWHOIS data for a domain — registrar, creation/expiry dates, nameservers, status.
http_pingMeasure HTTP response time over N requests. Returns avg, min, max, p95 latency and success rate.

Setup

npm install
npm run build

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "network-tools": {
      "command": "node",
      "args": ["D:/products/mcp-servers/mcp-network-tools/dist/index.js"]
    }
  }
}

Dependencies

  • @modelcontextprotocol/sdk — MCP server framework
  • Node.js built-in modules — dns, tls, net, https, http (no external runtime dependencies beyond MCP SDK)
  • ip-api.com — free geolocation API (no API key required)

Examples

DNS Lookup

dns_lookup({ domain: "example.com", record_types: ["A", "MX"] })

Reverse DNS

dns_lookup({ domain: "8.8.8.8", mode: "reverse" })

DNS Propagation Check

dns_lookup({ domain: "example.com", mode: "propagation" })

IP Info

ip_info({ ip: "1.1.1.1" })

SSL Check

ssl_check({ host: "example.com" })

WHOIS Lookup

whois_lookup({ domain: "example.com" })

HTTP Ping

http_ping({ url: "https://example.com", count: 10 })

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Package@rog0x/mcp-network-tools
TransportSTDIO
UpdatedMar 22, 2026
View on GitHub