MCPHerramientas MCP/Reseñas/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
clientIdstringobligatorio
The client's id (from list_clients).
locationIdstringobligatorio
The location's id (from list_locations).
topicstringobligatorio
Topic/keyword to drill into
limitnumberopcional
Max reviews (default 50)
Solicitud de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_topic_reviews",
"arguments": {
"clientId": "string",
"locationId": "string",
"topic": "string"
}
}
}Respuesta de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}La forma de la respuesta se muestra a modo ilustrativo — el contenido real depende de la herramienta y de tus datos.