Skip to main content
Glama

apple_list_reviews

Retrieve customer reviews for your app to monitor feedback and identify areas for improvement.

Instructions

List customer reviews for an app

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesApp ID
sortNo
limitNo

Implementation Reference

  • The handler function for apple_list_reviews that makes a request to the Apple App Store API to fetch customer reviews.
    handler: async (client, args) => {
      const params: Record<string, string> = {};
      if (args.sort) params['sort'] = args.sort;
      if (args.limit) params['limit'] = String(args.limit);
      return client.request(`/apps/${args.appId}/customerReviews`, { params });
    },
  • The input schema validation for apple_list_reviews.
    schema: z.object({
      appId: z.string().describe('App ID'),
      sort: z.enum(['createdDate', '-createdDate', 'rating', '-rating']).optional(),
      limit: z.number().optional(),
    }),
  • The full definition of the apple_list_reviews tool.
    const listCustomerReviews: ToolDef = {
      name: 'apple_list_reviews',
      description: 'List customer reviews for an app',
      schema: z.object({
        appId: z.string().describe('App ID'),
        sort: z.enum(['createdDate', '-createdDate', 'rating', '-rating']).optional(),
        limit: z.number().optional(),
      }),
      handler: async (client, args) => {
        const params: Record<string, string> = {};
        if (args.sort) params['sort'] = args.sort;
        if (args.limit) params['limit'] = String(args.limit);
        return client.request(`/apps/${args.appId}/customerReviews`, { 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