Skip to main content
Glama
BRNDMK

brandomica-mcp-server

Compare Brand Names

brandomica_compare_brands
Read-onlyIdempotent

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) }],
        };
      }
    );
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, openWorldHint=true, and idempotentHint=true. The description adds valuable behavioral context beyond annotations by specifying what checks are performed (domains, social handles, trademarks, app stores, SaaS channels) and what the tool returns (availability score, safety assessment per candidate, highest-scoring recommendation). This provides important operational details not covered by annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly front-loaded with the core purpose in the first sentence, followed by specific checks and return values. Every sentence earns its place with zero wasted words, making it highly efficient for an AI agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, rich annotations, and 100% schema coverage, the description provides good contextual completeness. It explains what checks are performed and what information is returned. The main gap is the lack of output schema, so the description doesn't detail the structure of the 'availability score' or 'safety assessment' return values.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with a clear parameter description. The description adds some semantic context by mentioning '2-5 brand name candidates' which aligns with the schema's minItems/maxItems constraints, but doesn't provide additional meaning beyond what the schema already documents about the brand_names parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('compare'), the resource ('brand name candidates'), and the scope ('2-5 candidates side-by-side'). It distinguishes from siblings by specifying comprehensive multi-channel checks (domains, social handles, trademarks, app stores, SaaS channels) rather than single-channel checks like 'check_domains' or 'check_social'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool: when comparing 2-5 brand names across multiple channels. However, it doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools (e.g., when you only need to check one channel or want a different type of assessment).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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