Skip to main content
Glama
rabdulsal

appstore-release-mcp

by rabdulsal

appstore-release-mcp

iOS 및 macOS 앱의 전체 App Store 릴리스 주기를 구동하는 MCP 서버: 버전 올리기 → 아카이브 + TestFlight 업로드 → 메타데이터 → 심사 제출 → 상태 확인.

차별점: 기존 App Store Connect MCP 서버들은 REST API를 감싸는 수준입니다 — 메타데이터, TestFlight 관리, 분석. 그 어느 것도 REST API가 지원하지 않는 단계, 즉 바이너리를 Apple 서버에 올리는 작업은 할 수 없습니다. 이 서버는 API 브라우저가 아닌 릴리스 파일럿이며, 그 작업을 수행하는 두 가지 방법을 제공합니다:

  • 직접 ASC REST API (ES256 JWT, node:crypto 기반 제로 의존성 서명) — 상태, 빌드, 메타데이터, 심사 제출용

  • asc_upload_build — 기존 fastlane 레인(lane)이 아카이브, 서명, 업로드를 수행하며 비동기 작업으로 실행되고 로그를 폴링합니다 (실제 아카이브는 5~15분 소요 — 어떤 MCP 타임아웃으로도 감당할 수 없습니다)

  • asc_upload_ipa — 이미 서명된 .ipa가 있나요? (eas build, CI 파이프라인, 수동 Xcode 아카이브에서 생성된) xcrun altool로 직접 업로드하세요 — fastlane 불필요, 로컬 아카이브 단계 불필요, 이미 보유한 ASC API 키 외에 설정할 것 없음

  • 로컬 버전 올리기project.pbxproj (및 xcodegen 프로젝트의 project.yml) 대상

요구 사항

  • Xcode 명령줄 도구가 설치된 macOS (xcrun altoolasc_upload_ipa에서 사용)

  • 빌드 및 업로드를 수행하는 레인이 있는 fastlane (예: beta) — asc_upload_build에만 필요하며, asc_upload_ipa만 사용한다면 전혀 필요 없음

  • App Store Connect API 키 (.p8)

Related MCP server: app-publish-mcp

설정

  1. ASC API 키 생성 (1회): App Store Connect → Users and Access → Integrations → App Store Connect API → Team Keys → Generate (역할: App Manager). .p8 파일을 다운로드하세요 — Apple은 정확히 한 번만 다운로드를 허용합니다. ~/.appstoreconnect/private_keys/에 보관하세요.

  2. Claude Code에 등록:

claude mcp add appstore \
  -e APPLE_KEY_ID=XXXXXXXXXX \
  -e APPLE_ISSUER_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx \
  -e ASC_KEY_PATH=$HOME/.appstoreconnect/private_keys/AuthKey_XXXXXXXXXX.p8 \
  -e APPLE_TEAM_ID=XXXXXXXXXX \
  -e ASC_BUNDLE_ID=com.example.myapp \
  -e ASC_PROJECT_DIR=/path/to/your/xcode/project \
  -- npx appstore-release-mcp

Fastfile이 platform :mac을 사용하는 macOS 앱이라면 -e ASC_PLATFORM=MAC_OS -e ASC_FASTLANE_PLATFORM=mac을 추가하세요.

  1. 확인: 에이전트에게 asc_doctor를 실행하라고 요청하세요. 모든 검사가 ✓여야 합니다.

도구

도구

기능

asc_doctor

설정, 자격 증명, fastlane/xcodebuild/altool, 앱 레코드 확인 — 먼저 실행

asc_app_status

버전 + 심사 상태 + 최근 빌드를 한 번에 조회

asc_list_builds

빌드 처리 상태 (업로드 후 VALID 대기)

asc_bump_version

로컬 프로젝트 파일에서 빌드 번호 올리기 / 마케팅 버전 설정

asc_upload_build

fastlane 업로드 레인을 비동기 작업으로 실행 — 작업 ID를 즉시 반환

asc_upload_ipa

이미 빌드된 .ipaxcrun altool로 업로드 — 비동기 작업, fastlane 불필요

asc_job_status

asc_upload_build 또는 asc_upload_ipa로 시작된 작업 폴링 — 상태 + 로그 꼬리

asc_update_metadata

REST로 설명 / 키워드 / 새로운 기능 / 프로모션 문구 업데이트

asc_submit_review

빌드 연결 + 심사 제출 생성 + 제출

릴리스 워크스루

fastlane으로 로컬 빌드:

asc_doctor                                   # toolchain healthy?
asc_bump_version {marketing_version: "1.1.0"}
asc_upload_build                             # → job id
asc_job_status {job_id}                      # poll until succeeded
asc_list_builds                              # wait for processingState VALID
asc_update_metadata {whats_new: "...", create_version: "1.1.0"}
asc_submit_review {build_id}                 # point of no return
asc_app_status                               # WAITING_FOR_REVIEW

이미 서명된 .ipa가 있다면 (EAS Build, CI, 수동 아카이브) — fastlane 불필요:

asc_doctor
asc_upload_ipa {ipa_path: "./build/app.ipa"} # → job id
asc_job_status {job_id}                      # poll until succeeded
asc_list_builds                              # wait for processingState VALID
asc_update_metadata {whats_new: "...", create_version: "1.1.0"}
asc_submit_review {build_id}
asc_app_status

환경 변수

자격 증명 이름은 의도적으로 fastlane의 app_store_connect_api_key와 일치하므로, 하나의 자격 증명 세트로 두 곳 모두에 사용할 수 있습니다.

변수

필수 여부

설명

APPLE_KEY_ID

ASC API 키 ID

APPLE_ISSUER_ID

ASC 발급자 ID

APPLE_KEY_CONTENT / ASC_KEY_PATH

둘 중 하나

base64 인코딩된 .p8 / .p8 파일 경로

APPLE_TEAM_ID

asc_upload_build

Apple Developer 팀 ID (asc_upload_ipa에는 불필요)

ASC_BUNDLE_ID

앱의 번들 식별자

ASC_PROJECT_DIR

권장

fastlane이 실행되는 Xcode 프로젝트 루트 (기본값: cwd)

ASC_PLATFORM

아니요

IOS (기본값), MAC_OS, TV_OS, VISION_OS

ASC_FASTLANE_LANE

아니요

업로드 레인 이름 (기본값: beta)

ASC_FASTLANE_PLATFORM

아니요

fastlane 플랫폼 접두사, 예: mac 또는 ios

ASC_UPLOAD_CMD

아니요

전체 재정의, 예: bundle exec fastlane ios beta

참고 사항

  • 빌드 작업은 서버 프로세스의 자식 프로세스입니다. MCP 클라이언트가 빌드 중간에 연결을 끊으면 작업이 종료됩니다. 로그는 어느 경우든 ~/.appstore-mcp/jobs/에 유지됩니다.

  • asc_submit_review는 릴리스의 돌이킬 수 없는 지점입니다 — 도구 설명은 에이전트에게 먼저 사람과 확인하도록 지시합니다.

라이선스

MIT

Available Tools

8 tools
asc_app_statusA

Snapshot of the app's release state: latest App Store versions with their review states, and recent builds with processing states. Use this to answer 'where is the release right now?'

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

Since no annotations are provided, the description must disclose behavior. It accurately describes the tool as returning a snapshot of versions and builds, which implies a read-only query. No side effects or complexities are hidden.

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 two sentences, no unnecessary words. The first sentence states the tool's function, and the second provides a usage example.

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

Completeness5/5

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

Given the absence of parameters and output schema, the description is fully adequate. It explains what the tool returns (versions with review states, builds with processing states), covering the necessary context for an AI agent.

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

Parameters4/5

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

There are no parameters, so the baseline score is 4. No additional parameter semantics are needed.

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 it provides a snapshot of the app's release state, including App Store versions and builds with their states. It uses a specific verb ('snapshot') and resource ('app's release state'), and distinguishes from siblings like asc_list_builds and asc_job_status which focus on narrower aspects.

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 explicitly says 'Use this to answer where is the release right now?', which is clear guidance. While it doesn't list when not to use it, the sibling tools provide implicit alternatives for specific queries.

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

asc_bump_versionA

Bump the local app version before a build. Increments the build number (CURRENT_PROJECT_VERSION) and optionally sets a new marketing version. Updates every .xcodeproj/project.pbxproj in the project dir, plus project.yml if the project uses xcodegen, so all sources stay in sync.

ParametersJSON Schema
NameRequiredDescriptionDefault
bump_buildNoIncrement the build number
marketing_versionNoNew marketing version, e.g. '1.1.0'. Omit to keep the current one.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that the tool updates multiple file types (.xcodeproj/project.pbxproj and project.yml if using xcodegen) and ensures 'all sources stay in sync'. This effectively communicates the scope and side effects. It does not discuss permissions or error handling, but the disclosure is sufficient for the tool's simplicity.

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 two sentences that front-load the purpose and then detail the behavior. Every sentence adds necessary information without redundancy, achieving high conciseness.

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?

The tool modifies files and has no output schema. The description explains what files are updated and the synchronization guarantee. It does not specify the return value (e.g., success/failure), but for a mutation tool of this simplicity, the behavior is adequately covered.

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

Parameters4/5

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

Schema description coverage is 100%, but the description adds value by explaining the effect of each parameter: 'Increment the build number' for bump_build and 'Omit to keep the current one' for marketing_version, along with an example format. This provides usage context beyond the schema's technical definitions.

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's purpose: bump the local app version before a build, incrementing the build number and optionally setting a new marketing version. It specifies the resource (local app version) and action (bump), and is distinct from sibling tools which cover different operations.

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 says 'before a build', providing clear context for when to use this tool. It does not explicitly exclude scenarios or name alternatives, but the sibling tools are sufficiently different that no further guidance is needed.

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

asc_doctorA

Verify the release toolchain end-to-end: ASC API credentials, mac-app directory, fastlane, xcodebuild, and (if creds are present) that the app record exists in App Store Connect. Run this first in any release session.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses all checks performed (credentials, directory, fastlane, xcodebuild, app record). It does not detail error handling or output format, but the behavior is well-described.

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?

Two concise sentences, front-loaded with purpose. No wasted words; every sentence adds value.

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?

Given no parameters and no output schema, the description is largely complete. It explains what is verified but omits what the tool returns (e.g., success/failure). Fairly adequate for a simple check tool.

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

Parameters5/5

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

The input schema has no parameters (100% coverage vacuously). The description adds valuable context about what the tool does beyond the schema, clarifying the verification scope.

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's purpose: verifying the release toolchain end-to-end, listing specific components. It distinguishes from sibling tools by being a pre-flight check.

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 explicitly says 'Run this first in any release session,' providing clear when-to-use guidance. It lacks explicit when-not-to-use or alternatives, but the context is strong.

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

asc_job_statusA

Check a build/upload job started by asc_upload_build. Returns status (running/succeeded/failed) and the tail of the log.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesJob ID returned by asc_upload_build
log_linesNoHow many log lines to include

TDQS

A4/5.0
Behavior3/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 discloses return values but does not mention side effects, prerequisites, or rate limits. Adequate for a simple read operation.

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 with no unnecessary words, covering purpose and output efficiently.

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 simple tool with two parameters and no output schema, the description is fairly complete. It could mention that the job must exist, but overall provides sufficient context.

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 each parameter has a clear description. The tool description adds context for job_id (from asc_upload_build) but does not significantly enhance the schema's meaning.

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 checks a build/upload job started by asc_upload_build and specifies return values (status and log tail). It distinguishes from sibling tools like asc_list_builds and asc_app_status.

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 implies usage after asc_upload_build returns a job ID, but does not explicitly state when not to use it or provide alternatives. Context is clear but lacks explicit guidance.

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

asc_list_buildsA

List recent uploaded builds and their processing states (PROCESSING → VALID before they can be submitted). Use after an upload to watch for the build becoming VALID.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries full behavioral disclosure. It reveals the processing state progression (PROCESSING → VALID) and the tool's role in monitoring. While it could detail more states or pagination, the core behavior is adequately described.

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 two sentences long, front-loaded with the main purpose, followed by usage guidance. Every sentence adds value without redundancy or fluff.

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?

Given no output schema, the description implies what the tool returns (builds and their states). For a simple list tool, this is sufficient. It does not cover error cases or full state enumeration, but the core functionality is complete enough for agent usage.

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

Parameters4/5

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

The only parameter is 'limit', which is well-defined in the schema with default, min, max. The description does not add parameter info, but the schema coverage is not needed since the parameter is self-explanatory. The description could mention limit's effect, but it's not a gap.

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's function: 'List recent uploaded builds and their processing states.' It specifies the verb (list), resource (builds), and the context of processing states. The purpose is distinct from sibling tools like asc_app_status or asc_upload_build.

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 explicitly advises when to use the tool: 'Use after an upload to watch for the build becoming VALID.' This provides clear context for usage, though it does not explicitly mention when not to use it or alternatives.

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

asc_submit_reviewA

Submit the editable App Store version for review: optionally attach a build, then create and submit a review submission. The build must have processingState VALID (check asc_list_builds). This is the point of no return for a release — confirm with the human first.

ParametersJSON Schema
NameRequiredDescriptionDefault
build_idNoBuild ID from asc_list_builds to attach to the version. Omit if already attached.

TDQS

A4.8/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses the irreversible nature ('point of no return') and need for human confirmation. Additional details like side effects or response format missing but not critical for this simple tool.

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?

Two sentences, zero waste. Front-loaded with action verb and clear object. Every sentence adds essential information.

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

Completeness5/5

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

For a tool with one optional parameter and no output schema, the description covers purpose, prerequisite, and safety warning. No gaps given the complexity.

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

Parameters5/5

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

Single parameter build_id is fully described in the schema and echoed in the description. Schema coverage is 100%, and description adds context about build validity and reference to asc_list_builds.

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?

Description clearly states the action: submit the App Store version for review. It specifies the optional build attachment and referencing sibling tool asc_list_builds for checking build status, differentiating from other tools.

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

Usage Guidelines5/5

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

Explicitly states prerequisite: build must have processingState VALID (check asc_list_builds). Issues a critical warning: 'point of no return — confirm with the human first', guiding when and when not to use.

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

asc_update_metadataA

Update App Store listing metadata (description, keywords, what's-new, promotional text) on the currently editable version via the ASC API. If no editable version exists, pass create_version to open a new one.

ParametersJSON Schema
NameRequiredDescriptionDefault
localeNoen-US
keywordsNoComma-separated, 100 chars max total
whats_newNoRelease notes shown in 'What's New'
descriptionNo
create_versionNoIf no editable version exists, create one with this version string (e.g. '1.1.0')
promotional_textNo

TDQS

A3.6/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 fully disclose behavioral traits. It mentions updating on the 'currently editable version' but does not define what that means (e.g., required app state), nor does it discuss partial vs. full updates, error handling, or required permissions. For a mutation tool, this is insufficient behavioral context.

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 two sentences, front-loaded with the primary action and supported by the conditional guidance. Every sentence is essential, with no redundant or extraneous information.

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?

Given 6 parameters, no annotations, and no output schema, the description is too brief. It omits details on parameter interactions, default behaviors (e.g., locale default 'en-US'), error conditions, and expected output. For a tool modifying critical App Store metadata, more completeness is expected.

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 50%, with three parameters having descriptions (keywords, whats_new, create_version). The description lists the main fields but adds no additional meaning beyond the schema. For parameters like description and promotional_text, no constraints or examples are provided. The description provides marginal value over the schema.

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's action ('Update App Store listing metadata') and lists the specific metadata fields (description, keywords, what's-new, promotional text). It also distinguishes itself from sibling tools like asc_bump_version or asc_submit_review by focusing on metadata updates.

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 provides explicit guidance on when to use the create_version parameter ('If no editable version exists, pass create_version to open a new one.'). It does not explicitly state when not to use the tool or compare with alternatives, but the context is clear for a metadata update scenario.

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

asc_upload_buildA

Archive, sign, and upload the app to TestFlight via the configured fastlane lane (default: fastlane beta; see ASC_FASTLANE_* / ASC_UPLOAD_CMD env vars). Runs asynchronously (5–15 min) — returns a job ID immediately; poll with asc_job_status. Note: if the lane calls increment_build_number you do NOT need asc_bump_version first unless changing the marketing version.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description discloses async execution (5-15 min), immediate job ID return, configuration via environment variables, and interaction with asc_bump_version. Lacks error handling details, but covers key behavioral traits.

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?

Two tightly written sentences: first covers purpose and configuration, second covers async behavior and version bump nuance. No redundant words, front-loaded with main action.

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?

Given zero parameters and no output schema, the description covers essential behavioral context: async, job ID, polling, version bump interaction, and env vars. Missing explicit error behavior or success/failure indicators, but adequate for the tool's simplicity.

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

Parameters4/5

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

No input parameters, schema coverage is trivially 100%. Description adds value by documenting environment variables (ASC_FASTLANE_*, ASC_UPLOAD_CMD) and default lane, compensating for the lack of parameters.

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 (archive, sign, upload), resource (app to TestFlight), and method (fastlane lane with default `fastlane beta`). It distinguishes from siblings like asc_bump_version (version bumping) and asc_job_status (polling).

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?

Explicitly mentions async nature and polling with asc_job_status, and advises when to skip asc_bump_version if the lane increments build number. Could additionally note when to use asc_doctor or asc_submit_review, but sufficient for a single-purpose tool.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.1.1
    • First observedasc_app_status
    • First observedasc_bump_version
    • First observedasc_doctor
    • First observedasc_job_status
    • First observedasc_list_builds
    • First observedasc_submit_review
    • First observedasc_update_metadata
    • First observedasc_upload_build

TDQS

A4.1/5.0
Disambiguation5/5

Each tool addresses a distinct step in the release workflow (environment check, version bump, upload, status polling, build listing, metadata update, submission). No two tools have overlapping responsibilities.

Naming Consistency4/5

All tools share the 'asc_' prefix and use lowercase with underscores. Most are verb_noun (bump_version, list_builds), but 'asc_doctor' and 'asc_app_status' are noun-based, introducing slight inconsistency.

Tool Count5/5

With 8 tools, the set is well-scoped for a release management server. Each tool serves a necessary function without redundancy, and the number is ideal for agent usability.

Completeness4/5

The tools cover the essential release lifecycle: environment verification, version bumping, build upload, status tracking, build listing, metadata update, and review submission. Minor gaps like cancellation or rollback are not present but are acceptable for a focused toolset.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rabdulsal/appstore-release-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server