Brand Mentions AI
Monitor how AI chatbots talk about your brand
Check what ChatGPT, Claude, Gemini, and Perplexity say about your brand with web search enabled — matching the real user experience. Start with monitor for a full picture, use check_recommendations for "best X" queries.
Monitor Brand Mentions
Query ChatGPT, Claude, and Gemini to check how each AI model talks about your brand. Returns mentions, sentiment, framing, and competitor comparisons. ⏱ 30-60s async — returns job_id, poll with get_job_result.
Returns: Comprehensive brand mention report across AI models with sentiment, framing, competitors, and recommendations
Parameters
brand *stringYour brand or company name to monitor (e.g. "Notion", "Acme Corp")
industrystringIndustry or category for context (e.g. "project management", "CRM software")
queriesarrayOptional custom queries to ask AI models. If omitted, auto-generates brand-specific queries.
modelsarrayWhich AI models to query. Defaults to all four. Perplexity is skipped if no key is configured.
Example
Monitor how AI models talk about Notion
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "brand-mentions-ai",
"skill": "monitor",
"input": {
"brand": "Notion",
"industry": "project management"
}
}' \
https://api.toolrouter.com/v1/tools/callCheck AI Recommendations
Ask AI models "best X" queries for your industry and check if your brand gets recommended. Shows rank, who gets recommended instead, and competitive positioning. ⏱ 20-40s async — returns job_id, poll with get_job_result.
Returns: Recommendation analysis showing if and where your brand gets recommended by AI models
Parameters
brand *stringYour brand or company name (e.g. "Slack", "Mailchimp")
category *stringProduct category for recommendation queries (e.g. "team messaging app", "email marketing platform")
queriesarrayOptional custom recommendation queries. If omitted, auto-generates "best X" queries from category.
modelsarrayWhich AI models to query. Defaults to all three.
Example
Check if Slack gets recommended as a messaging app
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "brand-mentions-ai",
"skill": "check_recommendations",
"input": {
"brand": "Slack",
"category": "team messaging app"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
MCP (Claude Code)
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpREST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"brand-mentions-ai","skill":"monitor","input":{}}' \
https://api.toolrouter.com/v1/tools/call