appstore-release-mcp
appstore-release-mcp
一个 MCP 服务器,驱动 iOS 和 macOS 应用的完整 App Store 发布周期:版本号提升 → 归档 + 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 altool— 由asc_upload_ipa使用)带有构建和上传 lane 的 fastlane(例如
beta)— 仅asc_upload_build需要;如果你只使用asc_upload_ipa则完全跳过一个 App Store Connect API 密钥(
.p8)
Related MCP server: app-publish-mcp
设置
生成一个 ASC API 密钥(一次):App Store Connect → 用户和访问 → 集成 → App Store Connect API → 团队密钥 → 生成(角色:App 管理器)。下载
.p8— Apple 只允许你下载一次。将其保存在~/.appstoreconnect/private_keys/。与 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对于使用 platform :mac 的 macOS 应用的 Fastfile,请添加 -e ASC_PLATFORM=MAC_OS -e ASC_FASTLANE_PLATFORM=mac。
**验证:**让代理运行
asc_doctor。所有检查都应为 ✓。
工具
Tool | 作用 |
| 验证配置、凭据、fastlane/xcodebuild/altool、应用记录 — 首先运行 |
| 版本 + 审核状态 + 最近构建,一次调用 |
| 构建处理状态(上传后等待 |
| 在本地项目文件中提升构建号 / 设置营销版本 |
| 将你的 fastlane 上传 lane 作为异步任务运行 — 立即返回任务 ID |
| 通过 |
| 轮询由 |
| 通过 REST 更新描述 / 关键词 / 新内容 / 促销文本 |
| 附加构建 + 创建审核提交 + 提交 |
发布流程
使用 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 匹配,这样一组凭据即可同时用于两者。
变量 | 必需 | 说明 |
| 是 | ASC API 密钥 ID |
| 是 | ASC 签发者 ID |
| 二选一 | base64 编码的 |
| 用于 | 苹果开发者团队 ID( |
| 是 | 你的应用的 bundle 标识符 |
| 推荐 | fastlane 运行的 Xcode 项目根目录(默认:cwd) |
| 否 |
|
| 否 | 上传 lane 名称(默认: |
| 否 | fastlane 平台前缀,例如 |
| 否 | 完整覆盖,例如 |
注意事项
构建任务是服务器进程的子进程;如果 MCP 客户端在构建中断开连接,任务就会终止。无论何种情况,日志都会保留在
~/.appstore-mcp/jobs/中。asc_submit_review是发布中不可返回的节点 — 工具描述会告知代理先与人类确认。
License
MIT
Available Tools
8 toolsasc_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?'
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| bump_build | No | Increment the build number | |
| marketing_version | No | New marketing version, e.g. '1.1.0'. Omit to keep the current one. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | Job ID returned by asc_upload_build | |
| log_lines | No | How many log lines to include |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| build_id | No | Build ID from asc_list_builds to attach to the version. Omit if already attached. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | en-US | |
| keywords | No | Comma-separated, 100 chars max total | |
| whats_new | No | Release notes shown in 'What's New' | |
| description | No | ||
| create_version | No | If no editable version exists, create one with this version string (e.g. '1.1.0') | |
| promotional_text | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
8 tool updates
v0.1.1- First observed
asc_app_status - First observed
asc_bump_version - First observed
asc_doctor - First observed
asc_job_status - First observed
asc_list_builds - First observed
asc_submit_review - First observed
asc_update_metadata - First observed
asc_upload_build
TDQS
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.
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.
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.
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
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
Create App Store screenshots, icons, ASO copy, localization, and revisions via hosted MCP.
Run App Store Connect from your IDE: pricing, listings, screenshots, releases, AI visibility.
MCP server for Appcircle mobile CI/CD platform.
App Store Connect operator for AI agents: icons, TestFlight builds, listings, IAP, rejection fixes.
Related MCP Servers
- AlicenseBqualityFmaintenanceAn MCP server to communicate with the App Store Connect API for iOS Developers25123331MIT
- AlicenseBqualityAmaintenanceUnified MCP server for App Store Connect & Google Play Console — manage listings, screenshots, releases, reviews & submissions919628MIT
- AlicenseBqualityAmaintenanceMCP server for managing Xcode Cloud workflows, builds, and test artifacts via the App Store Connect API.15141MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for shipping iOS apps, enabling screenshots of simulators, managing App Store Connect metadata, and submitting apps for review.5MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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