Skip to main content
Glama

apple_respond_to_review

Reply to App Store customer reviews by providing a review ID and response text to address feedback directly.

Instructions

Respond to a customer review

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reviewIdYesCustomer Review ID
responseBodyYesResponse text

Implementation Reference

  • The handler function for apple_respond_to_review that sends a POST request to create a customer review response.
    handler: async (client, args) => {
      return client.request('/customerReviewResponses', {
        method: 'POST',
        body: {
          data: {
            type: 'customerReviewResponses',
            attributes: { responseBody: args.responseBody },
            relationships: {
              review: {
                data: { type: 'customerReviews', id: args.reviewId },
              },
            },
          },
        },
      });
    },
  • Zod schema defining the input arguments for the tool.
    schema: z.object({
      reviewId: z.string().describe('Customer Review ID'),
      responseBody: z.string().describe('Response text'),
    }),
  • Tool definition including name and description.
    const respondToReview: ToolDef = {
      name: 'apple_respond_to_review',
      description: 'Respond to a customer review',
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