Skip to main content
Glama

apple_list_bundle_ids

Retrieve registered bundle IDs from App Store Connect to manage app identifiers and configurations.

Instructions

List registered bundle IDs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Implementation Reference

  • The tool definition and handler implementation for apple_list_bundle_ids.
    const listBundleIds: ToolDef = {
      name: 'apple_list_bundle_ids',
      description: 'List registered bundle IDs',
      schema: z.object({
        limit: z.number().optional(),
      }),
      handler: async (client, args) => {
        const params: Record<string, string> = {};
        if (args.limit) params['limit'] = String(args.limit);
        return client.request('/bundleIds', { params });
      },
    };
  • Registration of listBundleIds in the appleTools array.
    listBundleIds, createBundleId,
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