get_report | Pendium MCP Docs | Pendium.ai
Pendium MCP Docs

get_report

Get the complete visibility report including raw LLM responses, query analysis, and recommendations.

Get the full visibility report for a brand. This is the most detailed view available — includes raw LLM responses, individual query analysis, cited sources, competitor data, and recommendations. Use this after a scan completes for deep analysis.

Authentication: Required

Parameters

ParameterTypeRequiredDescription
syntheticIdintegerYesThe agent ID to get the full report for.

Response

{
  "scanAvailable": true,
  "account": {
    "creditBalance": 45,
    "plan": "starter",
    "upgradeUrl": "https://pendium.ai/pricing"
  },
  "scan": {
    "scanId": 5678,
    "syntheticId": 1234,
    "brandName": "Example",
    "scanDate": "2026-03-20T12:00:00Z",
    "overallScore": 72,
    "visibilityLevel": "Moderate",
    "summary": "...",
    "platformScores": [...],
    "personaScores": [...],
    "queryAnalysis": [...],
    "topCompetitors": [...],
    "citedSources": [...],
    "insights": { "strengths": [...], "gaps": [...], "opportunities": [...] },
    "recommendations": [...],
    "goals": [...],
    "scanStats": { "queryCount": 30, "llmCallCount": 120 },
    "rawResponses": [...]
  },
  "topics": [
    {
      "id": "topic-1",
      "name": "Core Product",
      "queries": [
        { "id": "q-1", "query": "best AI visibility tools", "reachLevel": "core" }
      ]
    }
  ],
  "reportUrl": "https://pendium.ai/r/abc123",
  "brandIndexUrl": "https://pendium.ai/brands/example"
}

Compared to get_scan_status

get_scan_statusget_report
Use caseQuick score check, pollingDeep analysis
Query-level dataNoYes (queryAnalysis)
Raw LLM responsesNoYes (rawResponses)
Cited sourcesNoYes (citedSources)
Account infoNoYes (balance, plan)
TopicsNoYes

Use get_scan_status for polling and quick checks. Use get_report when you need to analyze individual query results, see which sources AI platforms cited, or build content based on specific gaps.

On this page