@trilliwon/customer-review-mcp
v1.0.8
Published
A Model Context Protocol (MCP) server for interacting with the App Store Connect API.
Readme
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-mcpConfiguration
Add the following to your Claude Desktop configuration file:
macOS
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows
%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-checkLicense
This project is licensed under the MIT License - see the LICENSE file for details.
