Skip to main content
Glama

apple_delete_profile

Remove provisioning profiles from Apple's App Store Connect to manage app deployment certificates and configurations.

Instructions

Delete a provisioning profile

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileIdYesProfile ID

Implementation Reference

  • Definition and handler for the apple_delete_profile tool, which sends a DELETE request to /profiles/{profileId}.
    const deleteProfile: ToolDef = {
      name: 'apple_delete_profile',
      description: 'Delete a provisioning profile',
      schema: z.object({
        profileId: z.string().describe('Profile ID'),
      }),
      handler: async (client, args) => {
        await client.request(`/profiles/${args.profileId}`, { 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