apple_get_app_info
Retrieve app information from Apple's App Store Connect, including categories and age ratings, using the app ID.
Instructions
Get app info (categories, age rating, etc)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID |
Implementation Reference
- src/apple/tools.ts:42-52 (handler)The implementation of the `apple_get_app_info` tool, which retrieves app information from App Store Connect.
const getAppInfo: ToolDef = { name: 'apple_get_app_info', description: 'Get app info (categories, age rating, etc)', schema: z.object({ appId: z.string().describe('App ID'), }), handler: async (client, args) => { const res = await client.request(`/apps/${args.appId}/appInfos`); return res; }, };