fortytwo_top_charts
Pack: 42matters · Endpoint: https://gateway.pipeworx.io/42matters/mcp
Get a ranked top-chart list (top free, top paid, top grossing, etc.) for a country and category. Android uses cat_key (e.g. “OVERALL”); iOS uses genre_id (e.g. “36” for the overall/all-apps genre) plus optional device_type. Example: fortytwo_top_charts({ platform: “android”, list_name: “topselling_free”, cat_key: “OVERALL”, country: “US”, limit: 10, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | no | |
list_name | string | no | Chart type. Android: “topselling_free”, “topselling_paid”, “topgrossing”, “movers_shakers”, “topselling_new_free”, “topselling_new_paid”. iOS: “topselling_free”, “topselling_paid”, “topgrossing”. Default “topselling_free”. |
cat_key | string | no | Android only — category key, e.g. “OVERALL” or a Google Play category id. Default “OVERALL”. |
genre_id | string | no | iOS only — App Store genre/category id (e.g. “36” for all apps). |
device_type | string | no | iOS only — “iphone” or “ipad” (optional). |
country | string | no | 2-letter country code for the chart (default “US”). |
limit | number | no | Number of ranked results (1-100). Default 10. |
page | number | no | Page number for pagination (optional). |
_apiKey | string | yes | 42matters API access token (get one at https://42matters.com/pricing). |
Example call
curl -X POST https://gateway.pipeworx.io/42matters/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fortytwo_top_charts","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"42matters": {
"url": "https://gateway.pipeworx.io/42matters/mcp"
}
}
}
See Getting Started for client-specific install steps.