asn_neighbours
Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp
“BGP peers / neighbours of AS[N]” / “who does [ASN] peer with” / “upstream providers for [AS]” — BGP neighbours of an AS observed by RIPE’s RIS (Routing Information Service) route collectors. Use for transit / peering analysis, network topology mapping.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asn | string | yes | AS number |
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":"asn_neighbours","arguments":{"asn":"AS15169"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('asn_neighbours', {
"asn": "AS15169"
});
Response shape
| Field | Type | Description |
|---|---|---|
data | object | BGP neighbours observed via RIS route collectors |
status | string | API response status |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "BGP neighbours observed via RIS route collectors"
},
"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.