Skip to main content
Glama
rabdulsal

appstore-release-mcp

by rabdulsal

appstore-release-mcp

MCP-сервер, который управляет полным циклом релиза в App Store для iOS и macOS-приложений: увеличение версии → архивирование + загрузка в TestFlight → метаданные → отправка на ревью → статус.

Чем он отличается: существующие MCP-серверы для App Store Connect оборачивают REST API — метаданные, управление TestFlight, аналитика. Ни один из них не умеет делать то, что REST API не поддерживает: загружать бинарник на серверы Apple. Этот сервер — пилот релиза, а не браузер API, и даёт два способа это сделать:

  • Прямой ASC REST API (ES256 JWT, подпись без зависимостей через node:crypto) для статуса, сборок, метаданных и отправки на ревью

  • asc_upload_build — ваша существующая fastlane-лента архивирует, подписывает и загружает, запускается как асинхронная задача с опросом логов (реальное архивирование занимает 5–15 минут — ни один MCP-таймаут это не выдержит)

  • asc_upload_ipa — уже есть подписанный .ipa? (из eas build, CI-пайплайна, ручного архива в Xcode) Загрузите его напрямую через xcrun altool — без fastlane, без локального архивирования, ничего настраивать не нужно, кроме ключа ASC API, который у вас уже есть

  • Локальное увеличение версии в project.pbxprojproject.yml для проектов xcodegen)

Требования

  • macOS с инструментами командной строки Xcode (xcrun altool — используется asc_upload_ipa)

  • fastlane с лентой, которая собирает и загружает (например, beta) — нужен только для asc_upload_build; можно полностью пропустить, если вы используете только asc_upload_ipa

  • Ключ API App Store Connect (.p8)

Related MCP server: app-publish-mcp

Настройка

  1. Сгенерируйте ключ ASC API (один раз): 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

Для macOS-приложения, чей Fastfile использует platform :mac, добавьте -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

Загрузить уже собранный .ipa через xcrun 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

Переменные окружения

Имена учётных данных намеренно совпадают с app_store_connect_api_key из fastlane, так что один набор учётных данных служит для обоих.

Переменная

Обязательная

Примечания

APPLE_KEY_ID

да

ID ключа ASC API

APPLE_ISSUER_ID

да

ID издателя ASC

APPLE_KEY_CONTENT / ASC_KEY_PATH

одно из

base64-кодированный .p8 / путь к файлу .p8

APPLE_TEAM_ID

для asc_upload_build

ID команды Apple Developer (не нужен для asc_upload_ipa)

ASC_BUNDLE_ID

да

идентификатор бандла вашего приложения

ASC_PROJECT_DIR

рекомендуется

корень проекта Xcode, где запускается fastlane (по умолчанию: текущая директория)

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