Skip to main content
Glama

apple_disable_capability

Disable a specific capability on an Apple bundle ID to manage app features and permissions in App Store Connect.

Instructions

Disable a capability on a bundle ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
capabilityIdYesBundle ID Capability ID

Implementation Reference

  • The handler function that performs a DELETE request to disable the capability.
    handler: async (client, args) => {
      await client.request(`/bundleIdCapabilities/${args.capabilityId}`, { method: 'DELETE' });
      return { success: true };
    },
  • The input validation schema for the apple_disable_capability tool.
    schema: z.object({
      capabilityId: z.string().describe('Bundle ID Capability ID'),
    }),
  • The full tool definition object for apple_disable_capability.
    const disableCapability: ToolDef = {
      name: 'apple_disable_capability',
      description: 'Disable a capability on a bundle ID',
      schema: z.object({
        capabilityId: z.string().describe('Bundle ID Capability ID'),
      }),
      handler: async (client, args) => {
        await client.request(`/bundleIdCapabilities/${args.capabilityId}`, { method: 'DELETE' });
        return { success: true };
      },
    };
Install Server

Other Tools

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/mikusnuz/app-publish-mcp'

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