app-store-connect-mcp-server

list_bundle_ids

Find and list bundle IDs that are registered to your team

Input Schema

NameRequiredDescriptionDefault
filterNo
includeNoRelated resources to include in the response
limitNoMaximum number of bundle IDs to return (default: 100, max: 200)
sortNoSort order for the results

Input Schema (JSON Schema)

{ "properties": { "filter": { "properties": { "identifier": { "description": "Filter by bundle identifier", "type": "string" }, "name": { "description": "Filter by name", "type": "string" }, "platform": { "description": "Filter by platform", "enum": [ "IOS", "MAC_OS", "UNIVERSAL" ], "type": "string" }, "seedId": { "description": "Filter by seed ID", "type": "string" } }, "type": "object" }, "include": { "description": "Related resources to include in the response", "items": { "enum": [ "profiles", "bundleIdCapabilities", "app" ], "type": "string" }, "type": "array" }, "limit": { "description": "Maximum number of bundle IDs to return (default: 100, max: 200)", "maximum": 200, "minimum": 1, "type": "number" }, "sort": { "description": "Sort order for the results", "enum": [ "name", "-name", "platform", "-platform", "identifier", "-identifier", "seedId", "-seedId", "id", "-id" ], "type": "string" } }, "type": "object" }