apple_get_app
Retrieve detailed app information including version status from App Store Connect for app management and publishing workflows.
Instructions
Get detailed info about an app including latest version state
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID |
Implementation Reference
- src/apple/tools.ts:29-40 (handler)The implementation of the `apple_get_app` tool, which retrieves detailed information about an app from the App Store Connect API.
const getApp: ToolDef = { name: 'apple_get_app', description: 'Get detailed info about an app including latest version state', schema: z.object({ appId: z.string().describe('App ID'), }), handler: async (client, args) => { return client.request(`/apps/${args.appId}`, { params: { 'include': 'appStoreVersions,appInfos' }, }); }, };