Skip to main content
Glama
erayendes

Heimdall App Store Connect MCP

pre_release_versions__list

Read-onlyIdempotent

List TestFlight version numbers (e.g., 2.4) under which builds were uploaded across all apps, distinguishing them from App Store versions customers see.

Instructions

List the version numbers builds were uploaded under (e.g. 2.4), across all apps. These are TestFlight train numbers, not App Store versions — for what customers see, use app_store_versions. [GET /v1/preReleaseVersions]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNocomma-separated list of sort expressions; resources will be sorted as specified
limitNomaximum resources per page
includeNocomma-separated list of relationships to include Pull related records in the same call. Without it, checking a relationship costs one extra call per row returned.
next_urlNoAbsolute links.next URL from a previous response.
filter_appNofilter by id(s) of related 'app' The numeric Apple ID from apps__list, not the bundle ID. A bundle ID matches nothing and comes back as 200 with an empty list.
filter_buildsNofilter by id(s) of related 'builds' Takes a 'builds' resource id, read from the call that lists them — not a name. A value that matches nothing returns 200 with an empty list rather than an error.
filter_versionNofilter by attribute 'version'
filter_platformNofilter by attribute 'platform'
filter_builds.expiredNofilter by attribute 'builds.expired'
filter_builds.versionNofilter by attribute 'builds.version'
fields_preReleaseVersionsNothe fields to include for returned resources of type preReleaseVersions Return only these attributes. A full row set can exceed 200 KB.
filter_builds.processingStateNofilter by attribute 'builds.processingState'
filter_builds.buildAudienceTypeNofilter by attribute 'builds.buildAudienceType'

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv2.2.0
    • changedInput schema / properties / filter_app / description
      Previous value: -"filter by id(s) of related 'app'"New value: +"filter by id(s) of related 'app' The numeric Apple ID from apps__list, not the bundle ID. A bundle ID matches nothing and comes back as 200 with an empty list."
    • changedInput schema / properties / filter_builds / description
      Previous value: -"filter by id(s) of related 'builds'"New value: +"filter by id(s) of related 'builds' Takes a 'builds' resource id, read from the call that lists them — not a name. A value that matches nothing returns 200 with an empty list rather than an error."
  2. Changed3 schema fields changedv2.0.0
    • addedInput schema / properties / fields_preReleaseVersions
      Added value: +{
      +  "description": "the fields to include for returned resources of type preReleaseVersions Return only these attributes. A full row set can exceed 200 KB.",
      +  "items": {
      +    "enum": [
      +      "version",
      +      "platform",
      +      "builds",
      +      "app"
      +    ],
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / include / description
      Previous value: -"comma-separated list of relationships to include"New value: +"comma-separated list of relationships to include Pull related records in the same call. Without it, checking a relationship costs one extra call per row returned."
    • changedInput schema / properties / next_url / description
      Previous value: -"Absolute `links.next` URL from a previous response, to fetch the next page. When set, all other parameters are ignored."New value: +"Absolute links.next URL from a previous response."
  3. First observedv1.3.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds no additional behavioral traits beyond the scope (across all apps) and the TestFlight context, which is helpful but not extensive.

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 extremely concise—two sentences with zero wasted words. It front-loads the core purpose and includes the endpoint URL and sibling differentiation.

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

Completeness3/5

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

Given 13 parameters, no output schema, and annotations covering safety, the description covers the high-level purpose and scope but doesn't address pagination, sorting, or what fields are returned. It is minimally adequate for guiding selection but not fully comprehensive for invocation.

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

Parameters3/5

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

Schema description coverage is 100%, and the description provides no additional parameter-level meaning. Baseline is 3 as per the rubric, since the schema already documents all parameters thoroughly.

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 tool lists version numbers builds were uploaded under, across all apps. It distinguishes itself from a sibling (app_store_versions) by explaining these are TestFlight train versions, not customer-facing App Store versions.

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

Usage Guidelines4/5

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

The description explains when to use this tool ('List the version numbers builds were uploaded under') and when not to ('not App Store versions — for what customers see, use app_store_versions'). It provides a clear alternative but does not elaborate on other conditions or prerequisites.

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

Deploy Server

Other Tools