apple_list_bundle_ids
Retrieve registered bundle IDs from App Store Connect to manage app identifiers and configurations.
Instructions
List registered bundle IDs
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Implementation Reference
- src/apple/tools.ts:85-96 (handler)The tool definition and handler implementation for apple_list_bundle_ids.
const listBundleIds: ToolDef = { name: 'apple_list_bundle_ids', description: 'List registered bundle IDs', schema: z.object({ limit: z.number().optional(), }), handler: async (client, args) => { const params: Record<string, string> = {}; if (args.limit) params['limit'] = String(args.limit); return client.request('/bundleIds', { params }); }, }; - src/apple/tools.ts:1217-1217 (registration)Registration of listBundleIds in the appleTools array.
listBundleIds, createBundleId,