app-store-connect-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ASC_KEY | No | The private key for App Store Connect API. Can be a keychain reference (e.g., keychain:my-asc-key), a file path to a .p8 file, or a base64-encoded JSON envelope containing issuerID, keyID, and privateKeyPEM. | |
| ASC_BUNDLE_ID | No | The bundle ID of the app. Required only for App Store Server API calls (StoreKit 2). | |
| ASC_PRIVATE_KEY | No | The raw PEM string of the private key. Alternative to ASC_KEY. Discouraged as it may be exposed via process listing (ps -E). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| prompts | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| asc_statusA | Verify credentials and report what this server can reach, including the remaining rate-limit budget. Run this first when anything fails — it distinguishes a bad key from a bad request. |
| asc_search_endpointsA | Find operations across the App Store Connect API (1263 operations, v4.4.1) and the App Store Server API / StoreKit 2 (30). Search by keyword, method, tag or risk tier; returns operationIds for asc_call and asc_write. Start here rather than guessing a path — some resources are not where the URL pattern implies. |
| asc_describe_endpointA | Full detail for one operation: every parameter, the request body schema with real field names, and its risk tier. Call this before any write. |
| asc_callA | Read from Apple. Handles both APIs, path and query parameters, and pagination. READ operations only — anything that changes data goes through asc_write. A short list may just be one page: if the result says |
| asc_writeA | Change something in App Store Connect: create, update or delete. Consequential tiers (REVENUE, DESTRUCTIVE, INFRASTRUCTURE, ACCESS, RELEASE) ask the user to confirm before anything is sent. Use dry_run first when you are unsure what a call will do — it validates and reports the exact request without sending it. Read asc_describe_endpoint first to get the body schema right. |
| asc_pricing_getA | Read subscription pricing across every territory for an app, with the currency resolved and territories grouped by price so outliers stand out. Collapses a four-hop walk and ~175 lookups into a handful of requests. The currency lives on the territory, not the price row, which is why reading prices by hand tends to produce ambiguous numbers. |
| asc_pricing_setA | Change a subscription price. |
| asc_preflight_versionA | Answer "can this version actually be submitted?" across build state, export compliance, every localisation, screenshots, review contact details and any open submission. Returns GO or NO-GO with each gap naming the operation that fixes it. Catches the states that stall a release without explaining themselves — a build still PROCESSING, or an unanswered export-compliance question that parks the version at WAITING_FOR_EXPORT_COMPLIANCE. |
| asc_listing_screenshotsA | List the screenshot sets and screenshots on a version, with each asset’s delivery state. Uses included resources to turn what is otherwise a request per locale per set into a handful. |
| asc_upload_screenshotA | Upload a screenshot image, performing Apple’s full reserve → upload → commit sequence: reserve a slot, PUT each byte range to Apple’s asset host with the headers Apple supplies, then commit with an MD5 checksum. The raw API cannot do this in one call, and a wrong checksum or offset does not error — it leaves the asset stuck, which looks like nothing happened. |
| asc_analytics_reportA | Fetch an analytics report as rows. Walks request → report → instance → every segment, downloads the signed URLs, gunzips the TSV and returns parsed rows. Reading only the first segment — the obvious mistake — yields a plausible subset with nothing marking it partial. Call without report_name to list what exists. Never creates a report request: accessType ONGOING is a standing commitment on the account, not a query. |
| asc_upload_iap_screenshotA | Upload the App Store review screenshot for an in-app purchase, performing Apple’s reserve → upload → commit sequence. This is a different resource from a listing screenshot and is the usual reason an in-app purchase stays in MISSING_METADATA when everything else about it is complete — it is the one required field with no text to type. Apple rejects non-standard aspect ratios: a window capture at 1706x1610 fails IMAGE_BAD_ASPECT_RATIO, while 2880x1800 passes. Validation is asynchronous, so a rejected image commits cleanly and only then reports FAILED. |
| asc_availability_setA | Turn an app’s App Store availability on or off, territory by territory. Apple offers no bulk endpoint — appAvailabilities answers 403 "does not allow UPDATE" once the record exists — so this is one PATCH per territory, up to 175 of them. Territories already in the target state are skipped, a failure part-way does not abandon the rest, and every territory is re-read afterwards and compared against the request, because a loop that finishes is not evidence that the store matches what was asked for. Cannot set availableInNewTerritories: that is web-UI only. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| release-readiness | Check whether an app version can actually be submitted: build state, export compliance, localisations, screenshots and any open submission. |
| pricing-audit | Review subscription pricing across territories for one app, and flag anything inconsistent or missing. |
| review-triage | Summarise recent customer reviews into themes and pick out the ones worth answering. |
| testflight-status | Report which builds are with which tester groups, and what is blocked. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Risk tiers | What each risk tier means and how reversible it is. Read before asking a user to approve a write. |
| Apple API pitfalls | Cases where Apple returns a successful response that means something other than it appears to — pagination, alpha-3 territories, rejected sort, gzipped reports. Read before interpreting an empty result. |
| Enum values | Every enumerated field in the App Store Connect API, generated from Apple’s own spec so it cannot go stale. |
| Spec provenance | Where each API description came from and when it was fetched. |
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abd3lraouf-studios/app-store-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server