appfollow_reviews
Pack: appfollow · Endpoint: https://gateway.pipeworx.io/appfollow/mcp
Recent App Store / Google Play reviews for an app. Returns author, star rating, title, text, date, app version, store, and whether the developer replied. Example: appfollow_reviews({ app_id: “1038369065”, country: “us”, _apiKey: “your-token” }). app_id is the store external id — App Store numeric id (e.g. “1038369065”) or Google Play package name (e.g. “com.instagram.android”).
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 (e.g. “com.instagram.android”). |
country | string | no | Two-letter country/store code, e.g. “us”, “gb”. Optional (default “us”). |
from | string | no | Start date YYYY-MM-DD (optional; defaults to 30 days ago). |
to | string | no | End date YYYY-MM-DD (optional; defaults to today). |
_apiKey | string | yes | AppFollow API token (generate on the API management page in your AppFollow account). |
Example call
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_reviews","arguments":{}}}'
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.