Skip to main content
Glama
ayberkozz

App Store Connect MCP Server

by ayberkozz

List App Store versions

list_app_store_versions

Retrieve App Store version records for a given app ID. View release history and version details to track submissions and manage app releases.

Instructions

List the App Store version records (releases) for an app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesThe App Store Connect app ID
limitNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must disclose behavioral traits, but it only says 'list records' without mentioning pagination, ordering, response shape, or read-only nature. It does not even explicitly state that it returns multiple items or if there are any limits beyond the schema's 'limit' parameter.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that front-loads the core action and resource. There is zero wasted wording and it is immediately scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 2 parameters, no output schema, and no annotations, the description should provide more context about what the response looks like, how many versions are returned, and whether there is any ordering or filtering. It lacks these details, leaving an agent uncertain about the tool's behavior beyond the basic action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 50% (appId is described, limit is not). The description does not add any explanation for the limit parameter or clarify how appId is used beyond the schema. It does not compensate for the missing parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'App Store version records (releases)' for an app. It distinguishes from siblings like get_app_store_version (singular) and list_game_center_leaderboard_versions (different resource), so an agent can easily identify its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives such as get_app_store_version or list_builds. There is no mention of exclusions or conditions that would lead an agent to choose a different tool, leaving the usage context entirely implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.