Skip to main content
Glama
BRNDMK

brandomica-mcp-server

brandomica_compare_brands

Compare 2-5 brand name candidates by checking availability across domains, social handles, trademarks, and app stores. Get availability scores, safety assessments, and a top recommendation.

Instructions

Compare 2-5 brand name candidates side-by-side. Checks each across domains, social handles, trademarks, app stores, and SaaS channels. Returns availability score plus safety assessment per candidate and a highest-scoring recommendation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brand_namesYesArray of 2-5 brand names to compare

Implementation Reference

  • The tool 'brandomica_compare_brands' is registered and implemented in src/index.ts, using a POST request to the 'compare-brands' API endpoint.
    server.registerTool(
      "brandomica_compare_brands",
      {
        title: "Compare Brand Names",
        description:
          "Compare 2-5 brand name candidates side-by-side. Checks each across domains, social handles, trademarks, app stores, and SaaS channels. Returns availability score plus safety assessment per candidate and a highest-scoring recommendation.",
        inputSchema: z.object({
          brand_names: z
            .array(
              z.string().min(1).max(63).regex(
                /^[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?$/,
                "Lowercase letters, numbers, and hyphens only"
              )
            )
            .min(2)
            .max(5)
            .describe("Array of 2-5 brand names to compare"),
        }).strict(),
        annotations: toolAnnotations,
      },
      async ({ brand_names }) => {
        const data = (await fetchApiPost("compare-brands", { names: brand_names })) as CompareResponse;
        return {
          content: [{ type: "text" as const, text: JSON.stringify(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