domain_lookup
Pack: domains · Endpoint: https://gateway.pipeworx.io/domains/mcp
Get full registration details for a domain. Returns registrar, registrant, registration/expiration dates, nameservers, DNSSEC status, and domain status flags. Works for any TLD.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain name to look up (e.g., “google.com”, “bbc.co.uk”) |
Example call
Arguments
{
"domain": "google.com"
}
curl
curl -X POST https://gateway.pipeworx.io/domains/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"domain_lookup","arguments":{"domain":"google.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('domain_lookup', {
"domain": "google.com"
});
More examples
{
"domain": "bbc.co.uk"
}
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain name queried"
},
"registered": {
"type": "boolean",
"enum": [
false
],
"description": "Domain registration status"
},
"error": {
"type": "string",
"description": "Error message when domain not found"
}
},
"required": [
"domain",
"registered",
"error"
]
},
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain name (LDH form)"
},
"unicode_name": {
"type": [
"string",
"null"
],
"description": "Unicode/IDN representation of domain"
},
"registered": {
"type": "boolean",
"enum": [
true
],
"description": "Domain is registered"
},
"status": {
"type": "array",
"items": {
"type": "string"
},
"description": "Domain status flags (e.g., active, clientHold)"
},
"registrar": {
"type": [
"string",
"null"
],
"description": "Registrar name or organization"
},
"registrant": {
"type": [
"string",
"null"
],
"description": "Registrant name or organization"
},
"registration_date": {
"type": [
"string",
"null"
],
"description": "ISO 8601 registration date"
},
"expiration_date": {
"type": [
"string",
"null"
],
"description": "ISO 8601 expiration date"
},
"last_changed": {
"type": [
"string",
"null"
],
"description": "ISO 8601 last change/update date"
},
"nameservers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Authoritative nameserver hostnames"
},
"dnssec": {
"type": "boolean",
"description": "DNSSEC delegation signed status"
}
},
"required": [
"domain",
"unicode_name",
"registered",
"status",
"registrar",
"registrant",
"registration_date",
"expiration_date",
"last_changed",
"nameservers",
"dnssec"
]
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"domains": {
"url": "https://gateway.pipeworx.io/domains/mcp"
}
}
}
See Getting Started for client-specific install steps.