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
| Name | Required | Description | Default |
|---|---|---|---|
| brand_name | Yes | The brand name to check |
Implementation Reference
- src/index.ts:463-470 (handler)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, },