whoisxml_whois
Pack: whoisxml · Endpoint: https://gateway.pipeworx.io/whoisxml/mcp
Current WHOIS for
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain name to look up, e.g. “google.com” (no protocol) |
_apiKey | string | yes | WhoisXML API key (get one at whoisxmlapi.com — one key works across all products) |
Example call
Arguments
{
"domain": "google.com",
"_apiKey": "your-whoisxml-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/whoisxml/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"whoisxml_whois","arguments":{"domain":"google.com","_apiKey":"your-whoisxml-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('whoisxml_whois', {
"domain": "google.com",
"_apiKey": "your-whoisxml-api-key"
});
More examples
{
"domain": "example.org",
"_apiKey": "your-whoisxml-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"whoisxml": {
"url": "https://gateway.pipeworx.io/whoisxml/mcp"
}
}
}
See Getting Started for client-specific install steps.