npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@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-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

  1. Generate an App Store Connect API Key from App Store Connect
  2. Download the .p8 private key file
  3. Note your Key ID and Issuer ID
  4. Set the environment variables in your configuration

Available Tools

App Management

  • list_apps: Get a list of all apps in App Store Connect
  • get_app_info: Get detailed information about a specific app

Customer Review Management

  • list_customer_reviews: List all customer reviews for an app
  • list_customer_reviews_for_version: List customer reviews for a specific App Store Version
  • create_customer_review_response: Create or replace a response to a customer review
  • delete_customer_review_response: Delete a response to a customer review
  • get_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