apple_list_apps
Retrieve and display all applications registered in App Store Connect for management and review purposes.
Instructions
List all apps in App Store Connect
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 100) |
Implementation Reference
- src/apple/tools.ts:16-27 (handler)The implementation of the `apple_list_apps` tool including its name, description, schema validation using zod, and the handler function that makes the request to the App Store Connect API.
const listApps: ToolDef = { name: 'apple_list_apps', description: 'List all apps in App Store Connect', schema: z.object({ limit: z.number().optional().describe('Max results (default 100)'), }), handler: async (client, args) => { const params: Record<string, string> = {}; if (args.limit) params['limit'] = String(args.limit); return client.request('/apps', { params }); }, };