Skip to main content
Glama
ayberkozz

App Store Connect MCP Server

by ayberkozz

Get build details

get_build

Retrieve detailed information about a specific app build using its unique resource ID. Get build details like version, status, and metadata directly from App Store Connect.

Instructions

Get details for a single build by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
buildIdYesThe build resource ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It indicates a read operation but does not mention return content, error behavior, authentication needs, or side-effect safety beyond the verb 'Get'.

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?

A single, front-loaded sentence that states the operation and the required input with zero filler or redundancy. It is appropriately sized for a tool this simple.

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

Completeness4/5

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

For a one-parameter read operation with no output schema, the description is largely sufficient to invoke the tool correctly. It does not document the response fields, which is a minor gap, but the low complexity and clear ID requirement make it nearly complete.

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 coverage is 100% and the buildId parameter is already described as 'The build resource ID'. The description's 'by its ID' adds no new semantics beyond what the schema provides, so the baseline score applies.

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 uses a specific verb ('Get') and resource ('details for a single build') and scopes it by 'its ID'. This clearly distinguishes it from list_builds and other sibling operations that operate on different resources or actions.

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

Usage Guidelines3/5

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

The 'by its ID' phrasing implies the tool is for retrieving one known build, contrasting with listing builds. However, it does not explicitly state when to use this over list_builds or mention alternatives such as expire_build, leaving the selection logic to the agent's inference.

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