entity
Pack: rdap · Endpoint: https://gateway.pipeworx.io/rdap/mcp
Entity by handle. Pass base RDAP url to skip bootstrap.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
handle | string | yes | |
base | string | no |
Example call
Arguments
{
"handle": "ARIN-REGISTRY"
}
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":"entity","arguments":{"handle":"ARIN-REGISTRY"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('entity', {
"handle": "ARIN-REGISTRY"
});
More examples
{
"handle": "GOOGLE-2-ARIN",
"base": "https://rdap.arin.net/registry"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "RDAP entity record by handle"
}
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.