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_metricsasc_list_metrics_appsasc_get_app_metrics
asc_get_metrics
Returns an overview including:
- total metrics
- per-app breakdown
- daily rows
Example arguments:
from:2026-02-19to: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:
- Run
asc_get_metricsfor last 7 days - Identify the fastest-growing app
- Compare against the previous 7 days
Country performance by app
- Run
asc_list_metrics_apps - Select an app
- Use
asc_get_app_metricsfor daily + country breakdown
Revenue anomaly detection
- Pull trend via
asc_get_metrics - Flag sudden drop days
- 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

