fortytwo_app_lookup
Pack: 42matters · Endpoint: https://gateway.pipeworx.io/42matters/mcp
Look up full details for a single mobile app — title, developer, ratings, downloads/installs, category, price, and more. For Android pass the package name via app_id (e.g. “com.facebook.katana”); for iOS pass the numeric App Store id (e.g. “284882215”). Example: fortytwo_app_lookup({ platform: “android”, app_id: “com.facebook.katana”, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | no | |
app_id | string | yes | Android package name (e.g. “com.facebook.katana”) or iOS App Store numeric id (e.g. “284882215”). |
app_country | string | no | Optional 2-letter country code for pricing/availability metadata (default “US”). |
_apiKey | string | yes | 42matters API access token (get one at https://42matters.com/pricing). |
Example call
Arguments
{
"platform": "android",
"app_id": "com.facebook.katana",
"_apiKey": "your-42matters-api-key"
}
curl
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_app_lookup","arguments":{"platform":"android","app_id":"com.facebook.katana","_apiKey":"your-42matters-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fortytwo_app_lookup', {
"platform": "android",
"app_id": "com.facebook.katana",
"_apiKey": "your-42matters-api-key"
});
More examples
{
"platform": "ios",
"app_id": "284882215",
"app_country": "GB",
"_apiKey": "your-42matters-api-key"
}
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.