MCPMCP Tools/Reviews/get_competitor_analytics

get_competitor_analytics

Readreviews:read

Benchmark a location's Google reviews against its competitors. Location-scoped — requires clientId AND locationId. Returns competitive insight (Sydekick narrative + recommendations), strengths-vs-gaps (themes rivals win / you lead), a scorecard (self + each competitor: avg rating, review count, net sentiment, distribution), and review velocity + your share-of-voice. Use the optional `section` (insight | strengths_gaps | scorecard | velocity) to fetch one slice; omit for all. Manage the tracked set with add_competitor / remove_competitor / refresh_competitor.

Parameters
clientIdstringrequired
The client's id (from list_clients).
locationIdstringrequired
The location's id (from list_locations).
section"insight" | "strengths_gaps" | "scorecard" | "velocity" | "all"optional
insight | strengths_gaps | scorecard | velocity | all (default all)
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_competitor_analytics",
    "arguments": {
      "clientId": "string",
      "locationId": "string"
    }
  }
}
Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Response shape shown for illustration — the actual content depends on the tool and your data.