- Explore MCP Servers
- CustomerReviewMCP
Customerreviewmcp
What is Customerreviewmcp
CustomerReviewMCP is a Model Context Protocol (MCP) server designed for interacting with the App Store Connect API. It facilitates the management of apps, customer reviews, and beta testing within the App Store Connect environment.
Use cases
Use cases include managing customer reviews for apps, responding to user feedback, overseeing beta testing processes, and managing user roles and permissions within the App Store Connect framework.
How to use
To use CustomerReviewMCP, install it via npm with the command ‘npm install @trilliwon/customer-review-mcp’. Configure it by adding the necessary settings to your Claude Desktop configuration file and set up authentication using your App Store Connect API Key.
Key features
Key features include app management (listing apps, retrieving app information), customer review management (listing and responding to reviews), beta testing management (listing beta groups), and user management (listing team members and their roles).
Where to use
CustomerReviewMCP is primarily used in app development and management environments, particularly for developers and teams working with the App Store Connect API to manage their applications and customer feedback.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Customerreviewmcp
CustomerReviewMCP is a Model Context Protocol (MCP) server designed for interacting with the App Store Connect API. It facilitates the management of apps, customer reviews, and beta testing within the App Store Connect environment.
Use cases
Use cases include managing customer reviews for apps, responding to user feedback, overseeing beta testing processes, and managing user roles and permissions within the App Store Connect framework.
How to use
To use CustomerReviewMCP, install it via npm with the command ‘npm install @trilliwon/customer-review-mcp’. Configure it by adding the necessary settings to your Claude Desktop configuration file and set up authentication using your App Store Connect API Key.
Key features
Key features include app management (listing apps, retrieving app information), customer review management (listing and responding to reviews), beta testing management (listing beta groups), and user management (listing team members and their roles).
Where to use
CustomerReviewMCP is primarily used in app development and management environments, particularly for developers and teams working with the App Store Connect API to manage their applications and customer feedback.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
App Store Connect MCP Server
A Model Context Protocol (MCP) server for interacting with the App Store Connect API. This server provides tools for managing apps, customer reviews, and beta testing in App Store Connect.
Features
-
App Management
- List all apps
- Get detailed app information
- View app metadata and relationships
-
Customer Review Management
- List all customer reviews for an app
- List customer reviews for a specific App Store Version
- Create responses to customer reviews
- Delete customer review responses
- Get existing customer review responses
-
Beta Testing
- List beta groups
- View beta group details and relationships
-
User Management
- List team members
- View user roles and permissions
- Filter users by role and access
Installation
npm install @trilliwon/customer-review-mcp
Configuration
Add the following to your Claude Desktop configuration file:
macOS
~/Library/Application Support/Claude/claude_desktop_config.json
Windows
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"app-store-connect": {
"command": "npx",
"args": [
"-y",
"@trilliwon/customer-review-mcp"
],
"env": {
"APP_STORE_CONNECT_KEY_ID": "YOUR_KEY_ID",
"APP_STORE_CONNECT_ISSUER_ID": "YOUR_ISSUER_ID",
"APP_STORE_CONNECT_P8_PATH": "/path/to/your/auth-key.p8"
}
}
}
}
Authentication
- Generate an App Store Connect API Key from App Store Connect
- Download the .p8 private key file
- Note your Key ID and Issuer ID
- Set the environment variables in your configuration
Available Tools
App Management
list_apps
: Get a list of all apps in App Store Connectget_app_info
: Get detailed information about a specific app
Customer Review Management
list_customer_reviews
: List all customer reviews for an applist_customer_reviews_for_version
: List customer reviews for a specific App Store Versioncreate_customer_review_response
: Create or replace a response to a customer reviewdelete_customer_review_response
: Delete a response to a customer reviewget_customer_review_response
: Get the response to a specific customer review
Beta Testing
list_beta_groups
: List all beta testing groups with their relationships
User Management
list_users
: List all team members with role filtering and relationship inclusion
Error Handling
The server implements proper error handling for:
- Invalid authentication
- Missing required parameters
- API rate limits
- Network issues
- Invalid operations
Development
# Install dependencies
npm install
# Build the project
npm run build
# Run tests
npm test
# Run type checking
npm run type-check
License
This project is licensed under the MIT License - see the LICENSE file for details.
Related Links
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.