network_info
Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp
“What ASN does IP [X] belong to” / “network info for [IP]” / “what prefix is [IP] in” — get the allocated prefix and originating ASN for an IPv4/IPv6 address. Use for “which network owns this IP”, DDoS source attribution, hosting-provider lookup.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
resource | string | yes | IPv4/IPv6 address |
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":"network_info","arguments":{"resource":"8.8.8.8"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('network_info', {
"resource": "8.8.8.8"
});
More examples
{
"resource": "2001:4860:4860::8888"
}
Response shape
| Field | Type | Description |
|---|---|---|
data | object | Network info including allocated prefix and ASN |
status | string | API response status |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "Network info including allocated prefix and ASN"
},
"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.