# io.github.rabdulsal/appstore-release-mcp (npm · appstore-release-mcp)

App Store release pilot — version bump, TestFlight upload, metadata, review submission

- Trust score: 67/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `appstore-release-mcp`: 67/100 (this document), [markdown](https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp.md), [page](https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp)

## Channel facts

- Registry: `npm`
- Package: `appstore-release-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 27 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 642 tokens (~80/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 89/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 67% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add rabdulsal-appstore-release-mcp -- npx -y appstore-release-mcp
```

### Codex

```bash
codex mcp add rabdulsal-appstore-release-mcp -- npx -y appstore-release-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rabdulsal-appstore-release-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "appstore-release-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rabdulsal-appstore-release-mcp --command npx --arg -y --arg appstore-release-mcp
```

### Hermes

```yaml
mcp_servers:
  rabdulsal-appstore-release-mcp:
    command: "npx"
    args: ["-y", "appstore-release-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "rabdulsal-appstore-release-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 66, +46)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 20, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 27, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 45)

First indexed and scored.

## MCP tools (8)

### `asc_doctor` (~58 tokens)

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.

### `asc_app_status` (~46 tokens)

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?'

### `asc_list_builds` (~48 tokens)

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.

Input parameters:

- `limit` (integer)

### `asc_bump_version` (~112 tokens)

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.

Input parameters:

- `bump_build` (boolean): Increment the build number
- `marketing_version` (string): New marketing version, e.g. '1.1.0'. Omit to keep the current one.

### `asc_upload_build` (~92 tokens)

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.

### `asc_job_status` (~65 tokens)

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

Input parameters:

- `job_id` (string, required): Job ID returned by asc_upload_build
- `log_lines` (integer): How many log lines to include

### `asc_update_metadata` (~133 tokens)

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.

Input parameters:

- `create_version` (string): If no editable version exists, create one with this version string (e.g. '1.1.0')
- `description` (string)
- `keywords` (string): Comma-separated, 100 chars max total
- `locale` (string)
- `promotional_text` (string)
- `whats_new` (string): Release notes shown in 'What's New'

### `asc_submit_review` (~88 tokens)

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.

Input parameters:

- `build_id` (string): Build ID from asc_list_builds to attach to the version. Omit if already attached.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 66
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 27
- 2026-07-28: 45
- 2026-07-27: 45

## Links

- npm package: https://www.npmjs.com/package/appstore-release-mcp
- Socket report: https://socket.dev/npm/package/appstore-release-mcp
- Repository: https://github.com/rabdulsal/appstore-release-mcp
- Changelog RSS feed: https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rabdulsal-appstore-release-mcp/appstore-release-mcp
