# io.github.rog0x/network (npm · @rog0x/mcp-network-tools)

DNS, IP info, SSL, WHOIS, ping for AI agents

- Trust score: 69/100 (medium)
- Change this week: +45
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@rog0x/mcp-network-tools`: 69/100 (this document), [markdown](https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools.md), [page](https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools)

## Channel facts

- Registry: `npm`
- Package: `@rog0x/mcp-network-tools`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 133 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 407 tokens (~81/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add rog0x-network -- npx -y @rog0x/mcp-network-tools
```

### Codex

```bash
codex mcp add rog0x-network -- npx -y @rog0x/mcp-network-tools
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rog0x-network": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rog0x/mcp-network-tools"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rog0x-network --command npx --arg -y --arg @rog0x/mcp-network-tools
```

### Hermes

```yaml
mcp_servers:
  rog0x-network:
    command: "npx"
    args: ["-y", "@rog0x/mcp-network-tools"]
```

### Other

```json
{
  "mcpServers": {
    "rog0x-network": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-network-tools"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 69, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 66, +58)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-08-01 (score 8, −13)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial

### 2026-07-31 (score 21, −25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified

### 2026-07-28 (score 24, 0)

- [functional regression] Security disclosure: unverified → fail

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (5)

### `dns_lookup` (~134 tokens)

Resolve a domain name to DNS records (A, AAAA, MX, TXT, NS, CNAME, SOA). Supports reverse DNS and propagation checking.

Input parameters:

- `domain` (string, required): Domain name to look up (e.g. example.com)
- `mode` (string): Mode: 'resolve' (default) for forward DNS, 'reverse' for reverse DNS (pass IP in domain), 'propagation' to check across public DNS servers
- `record_types` (array): Record types to query (default: all). Options: A, AAAA, MX, TXT, NS, CNAME, SOA

### `ip_info` (~52 tokens)

Get geolocation and network information for an IP address: country, city, ISP, ASN, coordinates. Supports IPv4 and IPv6.

Input parameters:

- `ip` (string, required): IPv4 or IPv6 address to look up

### `ssl_check` (~72 tokens)

Check the SSL/TLS certificate of a host: validity, issuer, expiry date, days until expiry, subject alternative names, certificate chain, cipher, and protocol.

Input parameters:

- `host` (string, required): Hostname to check (e.g. example.com)
- `port` (number): Port number (default: 443)

### `whois_lookup` (~51 tokens)

Look up WHOIS information for a domain: registrar, creation date, expiry date, nameservers, and domain status.

Input parameters:

- `domain` (string, required): Domain name to look up (e.g. example.com)

### `http_ping` (~98 tokens)

Measure HTTP response time to a URL over multiple requests. Returns per-request latency and statistics: average, min, max, p95, and success rate.

Input parameters:

- `count` (number): Number of requests to send (default: 5, max: 20)
- `timeout_ms` (number): Timeout per request in milliseconds (default: 10000)
- `url` (string, required): URL to ping (e.g. https://example.com)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 66
- 2026-08-01: 8
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 24
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@rog0x/mcp-network-tools
- Socket report: https://socket.dev/npm/package/@rog0x/mcp-network-tools
- Repository: https://github.com/rog0x/mcp-network-tools
- Changelog RSS feed: https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rog0x-network/rog0x-mcp-network-tools
