Skip to main content
Glama
BRNDMK

brandomica-mcp-server

brandomica_check_social

Check availability of social media handles for GitHub, Twitter/X, TikTok, LinkedIn, and Instagram to secure your brand name across platforms.

Instructions

Check social media handle availability on GitHub, Twitter/X, TikTok, LinkedIn, and Instagram.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brand_nameYesThe brand name to check

Implementation Reference

  • The handler function for 'brandomica_check_social' which calls the 'check-social' API and formats the result.
    async ({ brand_name }) => {
      const data = (await fetchApi("check-social", brand_name)) as {
        results: SocialResult[];
      };
      return {
        content: [{ type: "text" as const, text: formatSocial(data) }],
      };
    }
  • src/index.ts:454-462 (registration)
    Registration of the 'brandomica_check_social' tool including its title, description, and schema.
    server.registerTool(
      "brandomica_check_social",
      {
        title: "Social Handle Availability",
        description:
          "Check social media handle availability on GitHub, Twitter/X, TikTok, LinkedIn, and Instagram.",
        inputSchema: z.object(brandNameInput).strict(),
        annotations: toolAnnotations,
      },

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