RIPE Stat
liveSecurityTechnologyIP / ASN / BGP intel — whois, geolocation, abuse contacts, AS neighbours. No auth.
8tools
0msauth
free tier50 calls/day
Tools
whoisrequired: resourceWhois data for IP/prefix/ASN.
Parameters
NameTypeDescription
resourcereqstringIP, prefix, or AS numberTry it
Response
network_inforequired: resourceNetwork info (prefix + ASN) for an IP.
Parameters
NameTypeDescription
resourcereqstring—Try it
Response
as_overviewrequired: asnASN summary.
Parameters
NameTypeDescription
asnreqstring—Try it
Response
asn_neighboursrequired: asnBGP neighbours of an AS.
Parameters
NameTypeDescription
asnreqstring—Try it
Response
bgp_staterequired: resourceCurrent BGP routing state for a resource.
Parameters
NameTypeDescription
resourcereqstring—Try it
Response
abuse_contactrequired: resourceAbuse contact email(s) for a resource.
Parameters
NameTypeDescription
resourcereqstring—Try it
Response
geolocrequired: resourceCountry geolocation of an IP/prefix.
Parameters
NameTypeDescription
resourcereqstring—Try it
Response
prefix_overviewrequired: resourceComprehensive prefix overview.
Parameters
NameTypeDescription
resourcereqstring—Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"whois","arguments":{"resource": "example"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("whois", {"resource":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ip / asn / bgp intel — whois, geolocation, abuse contacts, as neighbours");