Skip to main content
Glama

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
NameRequiredDescriptionDefault
periodNoTime period: 7d, 30d, 90d, all (default: 30d)
app_idNoFilter by app ID (optional)

Implementation Reference

  • 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;
    }
  • 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)",
          },
        },
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Stig-Johnny/cutie-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server