Skip to main content
Glama

apple_list_apps

Retrieve and display all applications registered in App Store Connect for management and review purposes.

Instructions

List all apps in App Store Connect

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 100)

Implementation Reference

  • The implementation of the `apple_list_apps` tool including its name, description, schema validation using zod, and the handler function that makes the request to the App Store Connect API.
    const listApps: ToolDef = {
      name: 'apple_list_apps',
      description: 'List all apps in App Store Connect',
      schema: z.object({
        limit: z.number().optional().describe('Max results (default 100)'),
      }),
      handler: async (client, args) => {
        const params: Record<string, string> = {};
        if (args.limit) params['limit'] = String(args.limit);
        return client.request('/apps', { params });
      },
    };
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