check_availability
Pack: domains · Endpoint: https://gateway.pipeworx.io/domains/mcp
Check whether a name is available to register across MULTIPLE TLDs at once — the domain-hunting tool. Pass a base name (“acme”) and get .com/.io/.ai/.co/.net/.org/.app/.dev checked in one call (or pass your own tlds list). For each: available true/false (+ expiration if taken). Use for “is X available”, “find an open domain for my project”, “which TLDs is X free on”. Single-domain detail is domain_status; this is the bulk/brainstorm version.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Base name to check, e.g. “acme” (a full “acme.com” is also accepted — the label before the first dot is used). |
tlds | array | no | TLDs to check (without the dot), e.g. [“com”,“io”,“ai”]. Default: com, io, ai, co, net, org, app, dev. Max 15. |
items | string | no |
Example call
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":"check_availability","arguments":{}}}'
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.