app-store-connect-mcp-server

create_bundle_id

Register a new bundle ID for app development

Input Schema

NameRequiredDescriptionDefault
identifierYesThe bundle ID string (e.g., 'com.example.app')
nameYesA name for the bundle ID
platformYesThe platform for this bundle ID
seedIdNoYour team's seed ID (optional)

Input Schema (JSON Schema)

{ "properties": { "identifier": { "description": "The bundle ID string (e.g., 'com.example.app')", "type": "string" }, "name": { "description": "A name for the bundle ID", "type": "string" }, "platform": { "description": "The platform for this bundle ID", "enum": [ "IOS", "MAC_OS", "UNIVERSAL" ], "type": "string" }, "seedId": { "description": "Your team's seed ID (optional)", "required": false, "type": "string" } }, "required": [ "identifier", "name", "platform" ], "type": "object" }