brandomica_check_domains
Check domain availability for a brand name across 6 TLDs (.com, .io, .co, .app, .dev, .ai) with purchase and renewal pricing information.
Instructions
Check domain availability across 6 TLDs (.com, .io, .co, .app, .dev, .ai) with purchase and renewal pricing.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| brand_name | Yes | The brand name to check |
Implementation Reference
- src/index.ts:435-452 (handler)Registration and handler logic for brandomica_check_domains.
server.registerTool( "brandomica_check_domains", { title: "Domain Availability", description: "Check domain availability across 6 TLDs (.com, .io, .co, .app, .dev, .ai) with purchase and renewal pricing.", inputSchema: z.object(brandNameInput).strict(), annotations: toolAnnotations, }, async ({ brand_name }) => { const data = (await fetchApi("check-domains", brand_name)) as { results: DomainResult[]; }; return { content: [{ type: "text" as const, text: formatDomains(data) }], }; } );