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
| Name | Type | Required | Description |
|---|---|---|---|
resource | string | yes | IP 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
| Field | Type | Description |
|---|---|---|
data | object | Whois data aggregated across RIRs |
status | string | API 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.