Skip to main content
Glama
BRNDMK

brandomica-mcp-server

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
NameRequiredDescriptionDefault
brand_nameYesThe brand name to check

Implementation Reference

  • 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) }],
        };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BRNDMK/brandomica-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server