app-store-connect-mcp-server

enable_bundle_capability

Enable a capability for a bundle ID

Input Schema

NameRequiredDescriptionDefault
bundleIdIdYesThe ID of the bundle ID
capabilityTypeYesThe type of capability to enable
settingsNoOptional capability settings

Input Schema (JSON Schema)

{ "properties": { "bundleIdId": { "description": "The ID of the bundle ID", "type": "string" }, "capabilityType": { "description": "The type of capability to enable", "enum": [ "ICLOUD", "IN_APP_PURCHASE", "GAME_CENTER", "PUSH_NOTIFICATIONS", "WALLET", "INTER_APP_AUDIO", "MAPS", "ASSOCIATED_DOMAINS", "PERSONAL_VPN", "APP_GROUPS", "HEALTHKIT", "HOMEKIT", "WIRELESS_ACCESSORY_CONFIGURATION", "APPLE_PAY", "DATA_PROTECTION", "SIRIKIT", "NETWORK_EXTENSIONS", "MULTIPATH", "HOT_SPOT", "NFC_TAG_READING", "CLASSKIT", "AUTOFILL_CREDENTIAL_PROVIDER", "ACCESS_WIFI_INFORMATION", "NETWORK_CUSTOM_PROTOCOL", "COREMEDIA_HLS_LOW_LATENCY", "SYSTEM_EXTENSION_INSTALL", "USER_MANAGEMENT", "APPLE_ID_AUTH" ], "type": "string" }, "settings": { "description": "Optional capability settings", "items": { "properties": { "key": { "description": "The setting key", "type": "string" }, "options": { "items": { "properties": { "enabled": { "type": "boolean" }, "key": { "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "type": "array" } }, "required": [ "bundleIdId", "capabilityType" ], "type": "object" }