asn
Pack: rdap · Endpoint: https://gateway.pipeworx.io/rdap/mcp
ASN allocation record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | number | yes |
Example call
Arguments
{
"number": 15169
}
curl
curl -X POST https://gateway.pipeworx.io/rdap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"asn","arguments":{"number":15169}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('asn', {
"number": 15169
});
More examples
{
"number": 3356
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "RDAP ASN allocation record"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rdap": {
"url": "https://gateway.pipeworx.io/rdap/mcp"
}
}
}
See Getting Started for client-specific install steps.