brandomica_check_appstores
Search iOS App Store and Google Play to verify brand name availability for mobile apps. Check if apps with your brand name already exist on major app platforms.
Instructions
Search iOS App Store and Google Play for apps matching the brand name.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| brand_name | Yes | The brand name to check |
Implementation Reference
- src/index.ts:493-509 (handler)The handler for 'brandomica_check_appstores' which calls the API and formats the result.
"brandomica_check_appstores", { title: "App Store Search", description: "Search iOS App Store and Google Play for apps matching the brand name.", inputSchema: z.object(brandNameInput).strict(), annotations: toolAnnotations, }, async ({ brand_name }) => { const data = (await fetchApi("check-appstores", brand_name)) as { results: AppStoreResult[]; }; return { content: [{ type: "text" as const, text: formatAppStores(data) }], }; } );