get_ai_visibility_check_detail
Retrieve detailed AI visibility data for a past check, including competitor rankings, mention rates, and scores per provider (OpenAI, Claude, Gemini). Uses check ID from history.
Instructions
Get full detail for a specific AI Visibility check including per-competitor rankings, mention rates, AI Visibility Scores, and per-provider results (OpenAI, Claude, Gemini). Returns the same data structure as get_ai_visibility_dashboard but for a past point in time. Uses checkId (not runId) — get checkId values from get_ai_visibility_history. Read-only. Returns JSON object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID (from list_projects) | |
| checkId | Yes | Check ID (from get_ai_visibility_history) |
Implementation Reference
- src/tools.ts:277-280 (schema)Zod schema for input validation: requires projectId and checkId (both 24-char hex ObjectId strings).
parameters: z.object({ projectId: objectId("Project ID (from list_projects)"), checkId: objectId("Check ID (from get_ai_visibility_history)"), }),