appfollow_aso_keywords
Pack: appfollow · Endpoint: https://gateway.pipeworx.io/appfollow/mcp
ASO keyword rankings for an app: which search keywords the app ranks for and its store position/popularity for each. Example: appfollow_aso_keywords({ app_id: “1038369065”, country: “us”, _apiKey: “your-token” }). app_id is the App Store numeric id or Google Play package name. Requires an AppFollow plan with ASO enabled on the token.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
app_id | string | yes | App store external id: App Store numeric id (e.g. “1038369065”) or Google Play package name. |
country | string | no | Two-letter country/store code, e.g. “us”. Optional (default “us”). |
device | string | no | Device, e.g. “iphone”, “ipad”. Optional. |
_apiKey | string | yes | AppFollow API token (ASO must be enabled on the plan). |
Example call
Arguments
{
"app_id": "1038369065",
"country": "us",
"_apiKey": "your-appfollow-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/appfollow/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"appfollow_aso_keywords","arguments":{"app_id":"1038369065","country":"us","_apiKey":"your-appfollow-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('appfollow_aso_keywords', {
"app_id": "1038369065",
"country": "us",
"_apiKey": "your-appfollow-api-key"
});
More examples
{
"app_id": "com.instagram.android",
"country": "us",
"device": "iphone",
"_apiKey": "your-appfollow-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"appfollow": {
"url": "https://gateway.pipeworx.io/appfollow/mcp"
}
}
}
See Getting Started for client-specific install steps.