Skip to main content
Glama
concavegit
by concavegit

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
NameRequiredDescriptionDefault
capabilityIdYesThe ID of the capability to disable

Implementation Reference

  • 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" }; }
  • 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) };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/concavegit/app-store-connect-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server