← Back to blog

Introducing App Store Connect Metrics with MCP

Connect ASC metrics with Appeeky MCP and API keys for fast analysis and automation

Appeeky · Mar 22, 2026

Cover image for: Introducing App Store Connect Metrics with MCP

Introducing App Store Connect Metrics, the goal is simple: make data easy to access, keep usage flows consistent, and enable natural-language analysis through MCP.

This guide explains how to use ASC Metrics in Appeeky for both technical and product teams.

What Is It?

App Store Connect Metrics syncs your Apple Sales & Trends data daily and consolidates key metrics in one place:

  • Downloads
  • Revenue
  • Subscriptions
  • Trials
  • IAP count

You can query this data through both REST endpoints and MCP tools.

Why Use MCP?

With MCP, you can ask intent-based questions instead of writing custom query logic:

  • "Which app had the most downloads in the last 30 days?"
  • "Show my top app by revenue."
  • "Give me daily trend data for a specific app."

These run directly through asc_* tools and use the same data source as the dashboard.

Setup Requirements

1) API key

Generate an API key from the Appeeky Dashboard.

2) ASC connection

Connect your App Store Connect credentials in Settings:

  • Issuer ID
  • Key ID
  • Private key (.p8)
  • Vendor Number

Once sync completes, metrics endpoints will start returning data.

MCP Tools

The core ASC Metrics tools are:

  • asc_get_metrics
  • asc_list_metrics_apps
  • asc_get_app_metrics

asc_get_metrics

Returns an overview including:

  • total metrics
  • per-app breakdown
  • daily rows

Example arguments:

  • from: 2026-02-19
  • to: 2026-03-21
  • optional app_id

asc_list_metrics_apps

Lists apps that currently have metrics data. Great first step before detail queries.

asc_get_app_metrics

Returns detailed data for a single app:

  • daily time series
  • country breakdown
  • period totals

Practical Product Workflows

Weekly growth summary

Agent flow:

  1. Run asc_get_metrics for last 7 days
  2. Identify the fastest-growing app
  3. Compare against the previous 7 days

Country performance by app

  1. Run asc_list_metrics_apps
  2. Select an app
  3. Use asc_get_app_metrics for daily + country breakdown

Revenue anomaly detection

  1. Pull trend via asc_get_metrics
  2. Flag sudden drop days
  3. Correlate with release or pricing changes

Using ASC Metrics with MCP helps teams move App Store data beyond dashboards and into daily decision-making workflows