prefix_overview

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

“Prefix overview for [CIDR]” / “info on IP block [X/Y]” — comprehensive summary for an IP prefix: BGP announcements, origin ASes, allocation history. Use to understand a whole IP block at once instead of chaining bgp_state + whois.

Parameters

NameTypeRequiredDescription
resourcestringyesPrefix (e.g. “8.8.8.0/24”)

Example call

Arguments

{
  "resource": "8.8.8.0/24"
}

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":"prefix_overview","arguments":{"resource":"8.8.8.0/24"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('prefix_overview', {
  "resource": "8.8.8.0/24"
});

Response shape

FieldTypeDescription
dataobjectComprehensive prefix overview with announcements, origins, allocation
statusstringAPI response status
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Comprehensive prefix overview with announcements, origins, allocation"
    },
    "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