get_sentiment_insights
Analyze sentiment breakdown across apps, categories, and time periods using AI classification to identify positive, neutral, and negative feedback patterns.
Instructions
Get sentiment analysis breakdown (positive/neutral/negative) by app, category, and time period. Powered by AI classification.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period: 7d, 30d, 90d, all (default: 30d) | |
| app_id | No | Filter by app ID (optional) |
Implementation Reference
- index.js:500-506 (handler)The handler for get_sentiment_insights which calls the analytics sentiment API.
case "get_sentiment_insights": { const query = {}; if (args?.period) query.period = args.period; if (args?.app_id) query.app_id = args.app_id; result = await apiRequest("GET", "/v1/analytics/sentiment", { query }); break; } - index.js:308-324 (schema)The schema definition for get_sentiment_insights.
name: "get_sentiment_insights", description: "Get sentiment analysis breakdown (positive/neutral/negative) by app, category, and time period. Powered by AI classification.", inputSchema: { type: "object", properties: { period: { type: "string", description: "Time period: 7d, 30d, 90d, all (default: 30d)", }, app_id: { type: "string", description: "Filter by app ID (optional)", }, }, }, },