Skip to main content
Glama
ayberkozz

App Store Connect MCP Server

by ayberkozz

List Game Center achievements

list_game_center_achievements

Retrieve all Game Center achievements for a specific game detail. Provide a gameCenterDetailId to display every achievement record.

Instructions

List all achievements for a Game Center detail.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gameCenterDetailIdYesFrom get_game_center_detail

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only says 'List all achievements' and does not disclose pagination behavior, response size limits, authentication needs, or whether localized achievements are included. 'List' implies read-only, but that is implicit rather than explicit.

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 sentence with no filler. The verb, object, and scope are all front-loaded and immediately actionable.

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?

For a simple one-parameter read-only list operation, the description is close to sufficient. However, with no annotations and no output schema, the agent lacks guidance on the return shape and possible pagination. The gaps are not severe because the operation is simple and the parameter is well-documented in the schema.

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 single parameter is already documented as 'From get_game_center_detail'. The description adds no additional parameter details, so the baseline score of 3 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 ('List') with a clear resource ('all achievements') and scope ('for a Game Center detail'). It is distinguishable from sibling tools like list_game_center_achievement_versions because it refers to achievements, not versions.

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 gives no guidance on when to use this tool versus alternatives such as list_game_center_achievement_versions or list_game_center_leaderboards. There are no explicit exclusions or conditions, so the agent must infer routing from sibling names alone.

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