Skip to main content
Glama

apple_create_bundle_id

Register a new bundle ID for iOS, macOS, or universal apps by specifying the identifier, display name, and platform.

Instructions

Register a new bundle ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identifierYesBundle ID (e.g. com.example.app)
nameYesDisplay name
platformYes

Implementation Reference

  • The 'createBundleId' tool definition, containing the handler and input schema for registering a new bundle ID.
    const createBundleId: ToolDef = {
      name: 'apple_create_bundle_id',
      description: 'Register a new bundle ID',
      schema: z.object({
        identifier: z.string().describe('Bundle ID (e.g. com.example.app)'),
        name: z.string().describe('Display name'),
        platform: z.enum(['IOS', 'MAC_OS', 'UNIVERSAL']),
      }),
      handler: async (client, args) => {
        return client.request('/bundleIds', {
          method: 'POST',
          body: {
            data: {
              type: 'bundleIds',
              attributes: {
                identifier: args.identifier,
                name: args.name,
                platform: args.platform,
              },
            },
          },
        });
      },
    };
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