Skip to main content
Glama
BRNDMK

brandomica-mcp-server

brandomica_check_google

Search Google to identify existing companies or products using a brand name and detect competitor overlap not found in formal registries.

Instructions

Search Google for existing companies or products using a brand name. Detects competitor overlap that may not appear in formal registries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brand_nameYesThe brand name to check

Implementation Reference

  • Registration and handler implementation for brandomica_check_google tool. It uses a helper function 'fetchApi' to retrieve Google search results and 'formatGoogle' to format them for the user.
      "brandomica_check_google",
      {
        title: "Web Presence (Google Search)",
        description:
          "Search Google for existing companies or products using a brand name. Detects competitor overlap that may not appear in formal registries.",
        inputSchema: z.object(brandNameInput).strict(),
        annotations: toolAnnotations,
      },
      async ({ brand_name }) => {
        const data = (await fetchApi("check-google", brand_name)) as {
          results: GoogleSearchResult[];
        };
        return {
          content: [{ type: "text" as const, text: formatGoogle(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