domain_status
Pack: domains · Endpoint: https://gateway.pipeworx.io/domains/mcp
Quick check if a domain is registered or available. Returns registration status and expiration date if registered.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain name to check (e.g., “example.com”) |
Example call
Arguments
{
"domain": "example.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_status","arguments":{"domain":"example.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('domain_status', {
"domain": "example.com"
});
More examples
{
"domain": "techstartup.io"
}
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain name queried"
},
"registered": {
"type": "boolean",
"enum": [
false
],
"description": "Domain is not registered"
},
"available": {
"type": "boolean",
"enum": [
true
],
"description": "Domain is available for registration"
}
},
"required": [
"domain",
"registered",
"available"
]
},
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain name (LDH form)"
},
"registered": {
"type": "boolean",
"enum": [
true
],
"description": "Domain is registered"
},
"available": {
"type": "boolean",
"enum": [
false
],
"description": "Domain is not available"
},
"expiration_date": {
"type": [
"string",
"null"
],
"description": "ISO 8601 expiration date"
},
"status": {
"type": "array",
"items": {
"type": "string"
},
"description": "Domain status flags"
}
},
"required": [
"domain",
"registered",
"available",
"expiration_date",
"status"
]
}
]
}
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.