Skip to main content
Glama
concavegit

App Store Connect MCP Server

by concavegit

disable_bundle_capability

Remove a capability from a bundle ID in App Store Connect to manage app features and permissions.

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 disable_bundle_capability tool. It validates the capabilityId argument and calls the AppStoreConnectClient to DELETE /bundleIdCapabilities/{capabilityId}, then returns a 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" 
      };
    }
  • The input schema definition for the disable_bundle_capability tool, specifying that capabilityId is a required string.
    {
      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)
    The tool registration in the MCP server request handler switch statement, which routes calls to disable_bundle_capability 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