whois

Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp

“Whois lookup for IP / ASN / prefix” / “who owns IP [X]” / “WHOIS for [resource]” — aggregated whois data for an IP address, IP prefix, or AS number across all five RIRs (ARIN, RIPE, APNIC, LACNIC, AFRINIC). Returns registrant org, registration country, abuse contacts, allocation date. Use for IP ownership, abuse-response, network forensics.

Parameters

NameTypeRequiredDescription
resourcestringyesIP address, prefix, or AS number (e.g. “8.8.8.8”, “8.8.8.0/24”, “AS15169”)

Example call

Arguments

{
  "resource": "8.8.8.8"
}

curl

curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"whois","arguments":{"resource":"8.8.8.8"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('whois', {
  "resource": "8.8.8.8"
});

More examples

{
  "resource": "AS15169"
}

Response shape

FieldTypeDescription
dataobjectWhois data aggregated across RIRs
statusstringAPI response status
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Whois data aggregated across RIRs"
    },
    "status": {
      "type": "string",
      "description": "API response status"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ripe-stat": {
      "url": "https://gateway.pipeworx.io/ripe-stat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026