Skip to main content
Glama
ayberkozz

App Store Connect MCP Server

by ayberkozz

Get app details

get_app

Retrieve detailed information for a single app by its App Store Connect ID. Access app metadata to manage builds, versions, and submissions.

Instructions

Get details for a single app by its App Store Connect app ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesThe App Store Connect app ID (from list_apps)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior. It only says 'Get details' without specifying what fields are returned, whether it's a read-only operation, or if there are any side effects. For a retrieval tool, this is a minimal safety profile.

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

Conciseness4/5

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

The description is a single, clear sentence that is concise and to the point. It front-loads the action and resource, with no filler.

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 that there is no output schema and parameter coverage is high, the description could be more complete by specifying what 'details' includes (e.g., app metadata, version info). However, the context is a simple single-resource retrieval, so it's minimally adequate.

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 only parameter (appId) has a description that clarifies it comes from list_apps. The description adds no additional meaning beyond the schema, which is adequate.

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

Purpose4/5

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

The description clearly states it retrieves details for a single app using its App Store Connect app ID. It distinguishes from list_apps (which lists apps) but doesn't explicitly differentiate from other get_* tools like get_app_store_version or get_build.

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?

The description provides no guidance on when to use this tool versus alternatives like get_app_store_version or get_build. It doesn't mention prerequisites (e.g., app must exist) or when to prefer it over list_apps.

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