# io.github.remoas/appstore-screenshots (npm · appstore-screenshots-mcp)

Generate professional App Store screenshots by matching any top app's style.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `appstore-screenshots-mcp`
- Version: `1.0.0`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 146 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 407 tokens (~135/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% 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 remoas-appstore-screenshots -- npx -y appstore-screenshots-mcp
```

### Codex

```bash
codex mcp add remoas-appstore-screenshots -- npx -y appstore-screenshots-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add remoas-appstore-screenshots --command npx --arg -y --arg appstore-screenshots-mcp
```

### Hermes

```yaml
mcp_servers:
  remoas-appstore-screenshots:
    command: "npx"
    args: ["-y", "appstore-screenshots-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "remoas-appstore-screenshots": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-screenshots-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-02 (score 62, +33)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional] Licence: MIT

### 2026-08-01 (score 29, +29)

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

### 2026-07-31 (score 0, −72)

- [security regression] Known CVEs: partial → unverified
- [security regression] Malware scan: pass → unverified
- [security regression] Provenance: fail → unverified
- [security regression] Install scripts: pass → unverified
- [functional regression] License: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Dependency health: partial → unverified
- [functional regression] Maintenance: pass → unverified
- [functional] Licence: MIT

### 2026-07-29 (score 72, +53)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-07-28 (score 19, −21)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (3)

### `search_apps` (~63 tokens)

Search the App Store for apps to use as a screenshot style reference. Returns app name, genre, icon, and number of screenshots available.

Input parameters:

- `query` (string, required): App name to search for (e.g. 'Spotify', 'Cal AI', 'Nike Training Club')

### `generate_screenshot` (~207 tokens)

Generate a professional App Store screenshot. Provide a reference app ID (from search_apps) to match its style, your app screenshot as a file path, and a marketing headline. Returns a 1290x2796 PNG ready for the App Store.

Input parameters:

- `gradient_end` (string): Optional hex color for gradient bottom (auto-extracted from reference if omitted)
- `gradient_start` (string): Optional hex color for gradient top (auto-extracted from reference if omitted)
- `headline` (string, required): Marketing headline for the screenshot (e.g. 'Track Your Fitness Goals')
- `output_path` (string): Where to save the generated screenshot. Defaults to same directory as input with '_appstore' suffix.
- `reference_app_id` (number): iTunes trackId of the app whose style to match (from search_apps)
- `screenshot_path` (string, required): Absolute file path to your app screenshot (PNG or JPG)
- `subtitle` (string): Optional subtitle text below the headline

### `generate_screenshot_set` (~137 tokens)

Generate a full set of App Store screenshots (4-6) from multiple app screenshots. Automatically creates compelling headlines for each. Ideal for a complete App Store listing.

Input parameters:

- `app_description` (string): Short description of what your app does (helps generate better headlines)
- `app_name` (string, required): Your app's name (used to generate relevant headlines)
- `output_directory` (string): Directory to save generated screenshots. Defaults to same as input files.
- `reference_app_id` (number): iTunes trackId of the app whose style to match
- `screenshot_paths` (array, required): Array of file paths to your app screenshots

## Diagnostics

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

## Score history

- 2026-08-03: 62
- 2026-08-02: 62
- 2026-08-01: 29
- 2026-07-31: 0
- 2026-07-29: 72
- 2026-07-28: 19
- 2026-07-27: 40

## Links

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