nameserver

Pack: rdap · Endpoint: https://gateway.pipeworx.io/rdap/mcp

Nameserver (glue) record from RDAP — the registry’s record for a host like “ns1.example.com”, with its IP addresses and status. Answers “what are the IPs behind this nameserver” and “is this nameserver registered”.

Parameters

NameTypeRequiredDescription
hoststringyesNameserver hostname, e.g. “ns1.google.com”.
basestringnoOptional registry RDAP base URL. Skips IANA bootstrap lookup — use it when a TLD comes back as tld_not_in_iana_bootstrap.

Example call

Arguments

{
  "host": "ns1.google.com"
}

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":"nameserver","arguments":{"host":"ns1.google.com"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('nameserver', {
  "host": "ns1.google.com"
});

More examples

{
  "host": "a.ns.apple.com"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "RDAP nameserver 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.

Regenerated from source · build September 10, 2026