# io.github.kumarprobeops/probeops-mcp-server (npm · @probeops/mcp-server)

Network diagnostics from 6 global regions. SSL, DNS, ping, whois, traceroute, port scan, latency.

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

## Components

- npm · `@probeops/mcp-server`: 71/100 (this document), [markdown](https://verifymcp.io/servers/kumarprobeops-probeops-mcp-server/probeops-mcp-server.md), [page](https://verifymcp.io/servers/kumarprobeops-probeops-mcp-server/probeops-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@probeops/mcp-server`
- Version: `1.2.3`
- 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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (97 of 101), 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 (97 of 101), 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 165 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 88/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1472 tokens (~58/item across 25 items; 22 tools + 3 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 kumarprobeops-probeops-mcp-server -- npx -y @probeops/mcp-server
```

### Codex

```bash
codex mcp add kumarprobeops-probeops-mcp-server -- npx -y @probeops/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add kumarprobeops-probeops-mcp-server --command npx --arg -y --arg @probeops/mcp-server
```

### Hermes

```yaml
mcp_servers:
  kumarprobeops-probeops-mcp-server:
    command: "npx"
    args: ["-y", "@probeops/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "kumarprobeops-probeops-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@probeops/mcp-server"
      ]
    }
  }
}
```

## 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 71, +51)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-02 (score 20, +15)

- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: fail → unverified

### 2026-07-31 (score 5, −30)

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

### 2026-07-30 (score 35, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (22)

### `ssl_check` (~62 tokens)

Check SSL/TLS certificate for a domain from multiple global regions. Returns certificate details (validity, expiry, issuer, TLS version, SANs) and checks consistency across regions.

Input parameters:

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

### `dns_lookup` (~88 tokens)

Look up DNS records for a domain from multiple global regions. Supports A, AAAA, CNAME, MX, TXT, NS, SOA, CAA, and PTR record types. Useful for checking DNS propagation across regions.

Input parameters:

- `domain` (string, required): Domain name to look up (e.g., "example.com")
- `record_type` (string): DNS record type (default: A)

### `mx_lookup` (~55 tokens)

Look up MX (Mail Exchange) records for a domain. Shows mail servers and priorities. Useful for verifying email configuration and troubleshooting email delivery.

Input parameters:

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

### `txt_lookup` (~61 tokens)

Look up TXT records for a domain. Shows SPF, DKIM, DMARC, domain verification, and other TXT records. Essential for email authentication and domain ownership verification.

Input parameters:

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

### `ns_lookup` (~54 tokens)

Look up NS (Nameserver) records for a domain. Shows authoritative DNS servers. Useful for verifying DNS delegation and nameserver configuration.

Input parameters:

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

### `cname_lookup` (~57 tokens)

Look up CNAME (Canonical Name) records for a domain. Shows DNS aliases. Useful for verifying CDN configuration and subdomain routing.

Input parameters:

- `domain` (string, required): Domain or subdomain to look up (e.g., "www.example.com")

### `caa_lookup` (~56 tokens)

Look up CAA (Certificate Authority Authorization) DNS records for a domain. Shows which certificate authorities are authorized to issue SSL/TLS certificates.

Input parameters:

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

### `reverse_dns_lookup` (~63 tokens)

Perform reverse DNS (PTR) lookup for an IP address. Finds the hostname associated with an IP. Essential for email deliverability verification and server identification.

Input parameters:

- `ip` (string, required): IP address to look up (e.g., "8.8.8.8")

### `is_it_down` (~55 tokens)

Check if a website is up, down, or partially available from multiple global regions. Returns HTTP status and response time per region.

Input parameters:

- `url` (string, required): Full URL to check (e.g., "https://example.com")

### `latency_test` (~64 tokens)

Measure network latency (ping) to a target from multiple global regions. Returns per-region latency plus average, min, and max.

Input parameters:

- `target` (string, required): Hostname or IP to test (e.g., "example.com" or "8.8.8.8")

### `traceroute` (~72 tokens)

Trace the network path to a target from one or more global regions. Shows each hop with latency. Supports TCP, UDP, and ICMP protocols.

Input parameters:

- `protocol` (string): Protocol to use (default: tcp)
- `target` (string, required): Hostname or IP to trace (e.g., "example.com")

### `port_check` (~73 tokens)

Check if a specific port is open, closed, or filtered on a target from multiple global regions. Useful for verifying firewall rules and service availability.

Input parameters:

- `port` (integer, required): Port number to check (1-65535)
- `target` (string, required): Hostname or IP to check (e.g., "example.com")

### `ping` (~64 tokens)

ICMP ping a target from multiple global regions. Returns packet loss and round-trip times. Useful for basic reachability and latency testing.

Input parameters:

- `target` (string, required): Hostname or IP to ping (e.g., "example.com" or "8.8.8.8")

### `whois` (~53 tokens)

Look up WHOIS registration information for a domain. Shows registrar, creation/expiry dates, nameservers, and registrant info.

Input parameters:

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

### `nmap_port_check` (~97 tokens)

Check if multiple ports are open or closed on a target from multiple global regions using nmap. Checks specified ports (not a full scan).

Input parameters:

- `ports` (string): Ports to check (e.g., "80,443" or "22,80,443,8080"). Default: common ports 1-1024
- `target` (string, required): Hostname or IP to check (e.g., "example.com")

### `tcp_ping` (~75 tokens)

Measure TCP-level latency to a specific port on a target from multiple global regions. More reliable than ICMP ping for hosts that block ICMP.

Input parameters:

- `port` (integer, required): Port number to TCP ping (e.g., 443)
- `target` (string, required): Hostname or IP to test (e.g., "example.com")

### `keyword_check` (~99 tokens)

Check if a keyword exists in a web page's raw HTML source from multiple global regions. Searches raw HTML — does not execute JavaScript, so content rendered client-side (SPAs, dynamic widgets) may not be detected. Useful for verifying static content delivery and geo-specific content.

Input parameters:

- `keyword` (string, required): Keyword or phrase to search for on the page
- `url` (string, required): URL to check (e.g., "https://example.com")

### `websocket_check` (~54 tokens)

Check WebSocket endpoint health and connectivity from multiple global regions. Verifies that a WebSocket server is accepting connections.

Input parameters:

- `url` (string, required): WebSocket URL to check (e.g., "wss://example.com/ws")

### `banner_grab` (~77 tokens)

Grab the service banner from a specific port on a target from multiple global regions. Identifies service type and version.

Input parameters:

- `port` (integer, required): Port number to grab banner from (e.g., 22, 80, 443)
- `target` (string, required): Hostname or IP to check (e.g., "example.com")

### `api_health` (~55 tokens)

Check API endpoint health from multiple global regions. Sends an HTTP request and reports status code, response time, and availability.

Input parameters:

- `url` (string, required): API URL to check (e.g., "https://api.example.com/health")

### `get_api_key` (~33 tokens)

Get instructions to set up your ProbeOps API key for full access to all 21 tools and 6 global regions.

### `account_status` (~47 tokens)

Show your ProbeOps account status: subscription tier, diagnostic quota (minute/hour/day/month), proxy token quota, and active proxy token details. Use this to check remaining quota before running multiple tools.

## Diagnostics

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

## Score history

- 2026-08-03: 71
- 2026-08-02: 20
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 35
- 2026-07-28: 53
- 2026-07-27: 53

## Links

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