ripestat_asn_search
Pack: ripe-stat · Endpoint: https://gateway.pipeworx.io/ripe-stat/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ripestat_asn_search for the schema, then POST the same URL with its arguments for the data.
“What is [company]‘s ASN” / “find the AS number for [organisation]” / “search ASNs by name” — resolve an organisation or network name to its AS numbers and prefixes using RIPEstat’s resource autocomplete. Returns candidate ASNs with their holder descriptions, so it is the lookup step BEFORE as_overview / ripestat_announced_prefixes / asn_neighbours when you only know the company name. Matches on the registered AS name and holder description across all five RIRs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Organisation or network name to search for (e.g. “cloudflare”, “deutsche telekom”) |
Example call
Arguments
{
"query": "cloudflare"
}
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":"ripestat_asn_search","arguments":{"query":"cloudflare"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ripestat_asn_search', {
"query": "cloudflare"
});
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.