MCPMCP-Tools/Bewertungen/get_topic_reviews

get_topic_reviews

Readreviews:read

List the reviews that mention a specific topic for a location (drill-down from get_topic_trends). Location-scoped — requires clientId, locationId, and topic. Optional month (YYYY-MM) narrows to a single month — pass it when the caller is drilling into ONE cell of the topics-by-month heatmap, or you get the topic's whole history newest-first instead of that cell's reviews. Optional limit (default 50).

Parameter
clientIdstringerforderlich
The client's id (from list_clients).
locationIdstringerforderlich
The location's id (from list_locations).
topicstringerforderlich
Topic/keyword to drill into
limitnumberoptional
Max reviews (default 50)
Beispielanfrage
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_topic_reviews",
    "arguments": {
      "clientId": "string",
      "locationId": "string",
      "topic": "string"
    }
  }
}
Beispielantwort
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Die Antwortform dient nur zur Veranschaulichung — der tatsächliche Inhalt hängt vom Tool und Ihren Daten ab.