brandomica_brand_report
Generate a brand safety report with availability scores, trademark screening, domain costs, and evidence for due diligence and filing readiness.
Instructions
Generate a comprehensive Brand Safety Report with timestamped evidence for due diligence. Includes availability score, safety assessment, filing readiness, linguistic/phonetic screening, all evidence, domain costs, trademark filing estimates, and limitations. Returns full JSON report.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| brand_name | Yes | The brand name to check |
Implementation Reference
- src/index.ts:418-433 (handler)Registration and handler implementation for the brandomica_brand_report tool.
server.registerTool( "brandomica_brand_report", { title: "Brand Safety Report", description: "Generate a comprehensive Brand Safety Report with timestamped evidence for due diligence. Includes availability score, safety assessment, filing readiness, linguistic/phonetic screening, all evidence, domain costs, trademark filing estimates, and limitations. Returns full JSON report.", inputSchema: z.object(brandNameInput).strict(), annotations: toolAnnotations, }, async ({ brand_name }) => { const data = await fetchApi("brand-report", brand_name); return { content: [{ type: "text" as const, text: JSON.stringify(data) }], }; } );