AppTweak MCP Server

analyze_reviews

Analyze app reviews and ratings to extract user satisfaction insights

Input Schema

NameRequiredDescriptionDefault
appIdYesApp ID to analyze reviews for
countryNoTwo-letter country code (e.g., US, GB)US
languageNoFilter reviews by language (e.g., en, es)en
platformYesPlatform (ios/android)

Input Schema (JSON Schema)

{ "properties": { "appId": { "description": "App ID to analyze reviews for", "type": "string" }, "country": { "default": "US", "description": "Two-letter country code (e.g., US, GB)", "type": "string" }, "language": { "default": "en", "description": "Filter reviews by language (e.g., en, es)", "type": "string" }, "platform": { "description": "Platform (ios/android)", "enum": [ "ios", "android" ], "type": "string" } }, "required": [ "appId", "platform" ], "type": "object" }