as_overview
Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp
“Who owns AS[N]” / “AS[number] info” / “what company is ASN [X]” / “Cloudflare / Google / Amazon ASN” — summary for an Autonomous System Number (ASN): holder organization, country, AS type (transit / content / IXP), allocation date. Pass “AS15169” or “15169”. Use for network attribution, BGP analysis.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asn | string | yes | AS number (e.g. “AS15169” or “15169”) |
Example call
Arguments
{
"asn": "AS15169"
}
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":"as_overview","arguments":{"asn":"AS15169"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('as_overview', {
"asn": "AS15169"
});
More examples
{
"asn": "3356"
}
Response shape
| Field | Type | Description |
|---|---|---|
data | object | ASN summary with holder, country, type, and block range |
status | string | API response status |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "ASN summary with holder, country, type, and block range"
},
"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.