MCPFerramentas MCP/Avaliações/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).

Parâmetros
clientIdstringobrigatório
The client's id (from list_clients).
locationIdstringobrigatório
The location's id (from list_locations).
topicstringobrigatório
Topic/keyword to drill into
limitnumberopcional
Max reviews (default 50)
Exemplo de solicitação
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_topic_reviews",
    "arguments": {
      "clientId": "string",
      "locationId": "string",
      "topic": "string"
    }
  }
}
Exemplo de resposta
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

O formato da resposta é ilustrativo — o conteúdo real depende da ferramenta e dos seus dados.