AppTweak MCP Server

analyze_top_keywords

Get keyword suggestions sorted by score (keyword quality), volume (search popularity), or rank (ranking difficulty)

Input Schema

NameRequiredDescriptionDefault
appIdsYesArray of app IDs to analyze
countryNoTwo-letter country code (e.g., US, GB)US
limitNoNumber of keywords to analyze per app (max 20)
platformYesPlatform (ios/android)
sortByNoHow to sort keyword suggestions: score (keyword quality), volume (search popularity), rank (ranking difficulty)score

Input Schema (JSON Schema)

{ "properties": { "appIds": { "description": "Array of app IDs to analyze", "items": { "type": "string" }, "type": "array" }, "country": { "default": "US", "description": "Two-letter country code (e.g., US, GB)", "type": "string" }, "limit": { "default": 10, "description": "Number of keywords to analyze per app (max 20)", "maximum": 20, "type": "number" }, "platform": { "description": "Platform (ios/android)", "enum": [ "ios", "android" ], "type": "string" }, "sortBy": { "default": "score", "description": "How to sort keyword suggestions: score (keyword quality), volume (search popularity), rank (ranking difficulty)", "enum": [ "score", "volume", "rank" ], "type": "string" } }, "required": [ "appIds", "platform" ], "type": "object" }