disable_bundle_capability
Disable a specific capability for an App Store Connect bundle ID by providing the capability ID to manage app features and configurations.
Instructions
Disable a capability for a bundle ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| capabilityId | Yes | The ID of the capability to disable |
Implementation Reference
- src/handlers/bundles.ts:123-136 (handler)The handler function that executes the tool: validates input, deletes the bundleIdCapabilities resource via the AppStoreConnectClient, and returns success message.async disableBundleCapability(args: { capabilityId: string; }): Promise<{ success: boolean; message: string }> { const { capabilityId } = args; validateRequired(args, ['capabilityId']); await this.client.delete(`/bundleIdCapabilities/${capabilityId}`); return { success: true, message: "Capability disabled successfully" }; }
- src/index.ts:621-633 (schema)Tool schema definition specifying the input parameters (capabilityId) and description for the MCP tool.name: "disable_bundle_capability", description: "Disable a capability for a bundle ID", inputSchema: { type: "object", properties: { capabilityId: { type: "string", description: "The ID of the capability to disable" } }, required: ["capabilityId"] } },
- src/index.ts:1376-1377 (registration)Registration in the tool call handler switch statement that dispatches calls to this tool name to the BundleHandlers.disableBundleCapability method.case "disable_bundle_capability": return { toolResult: await this.bundleHandlers.disableBundleCapability(args as any) };