# io.github.ethbak/icon-composer-mcp (npm · icon-composer-mcp)

CLI and MCP server for creating Apple .icon bundles with Liquid Glass effects (iOS 26+)

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

## Components

- npm · `icon-composer-mcp`: 74/100 (this document), [markdown](https://verifymcp.io/servers/ethbak-icon-composer-mcp/icon-composer-mcp.md), [page](https://verifymcp.io/servers/ethbak-icon-composer-mcp/icon-composer-mcp)

## Channel facts

- Registry: `npm`
- Package: `icon-composer-mcp`
- Version: `1.1.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**: 70/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known high-severity CVE affects sharp 0.34.5, a direct dependency. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (126 of 130), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to ethbak/icon-composer-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 119 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 75/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 2601 tokens (~216/item across 12 items; 12 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 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 ethbak-icon-composer-mcp -- npx -y icon-composer-mcp
```

### Codex

```bash
codex mcp add ethbak-icon-composer-mcp -- npx -y icon-composer-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ethbak-icon-composer-mcp --command npx --arg -y --arg icon-composer-mcp
```

### Hermes

```yaml
mcp_servers:
  ethbak-icon-composer-mcp:
    command: "npx"
    args: ["-y", "icon-composer-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "ethbak-icon-composer-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "icon-composer-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 74, +45)

- [security regression] GHSA-f88m-g3jw-g9cj affects this package: high
- [security regression] Known CVEs: unverified → fail
- [security improvement] Provenance: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [security] The attested source repository moved: ethbak/icon-composer-mcp
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

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

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 24, −8)

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

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

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 50, +26)

- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (12)

### `create_icon` (~272 tokens)

Create an Apple Icon Composer .icon bundle from a foreground image and background color. Outputs a ready-to-use .icon bundle for Xcode 26.

Input parameters:

- `bg_color` (string, required): Background color as hex (e.g. #0A66C2)
- `blur_material` (number): Liquid Glass blur amount (0-1, omit to disable)
- `bundle_name` (string): Name for the .icon bundle (without extension)
- `dark_bg_color` (string): Dark mode background color as hex
- `foreground_path` (string, required): Absolute path to foreground image (PNG or SVG)
- `glyph_scale` (number): Scale of foreground glyph (0.1-2.0, default 1.0 fills ~65% of icon area in Icon Composer)
- `output_dir` (string, required): Directory to write the .icon bundle to
- `shadow_kind` (string): Shadow type
- `shadow_opacity` (number): Shadow opacity
- `specular` (boolean): Enable specular highlights (Liquid Glass)
- `split_layers` (boolean): Split multi-shape SVGs into separate glass layers (each shape gets independent glass effects)
- `translucency_enabled` (boolean): Enable translucency gradient
- `translucency_value` (number): Translucency amount (0-1)

### `add_layer_to_icon` (~173 tokens)

Add a new layer to an existing .icon bundle. Creates a new group or adds to an existing one.

Input parameters:

- `blend_mode` (string): Blend mode
- `bundle_path` (string, required): Path to existing .icon bundle
- `create_group` (boolean): Create a new group for this layer
- `glass` (boolean): Participate in Liquid Glass effects
- `group_index` (number): Group index to add to (0-based, default 0)
- `image_path` (string, required): Path to image file to add as layer
- `layer_name` (string, required): Name for the layer
- `offset_x` (number): X offset in points
- `offset_y` (number): Y offset in points
- `opacity` (number): Layer opacity
- `scale` (number): Layer scale

### `remove_layer` (~111 tokens)

Remove a layer or entire group from an .icon bundle. Optionally cleans up orphaned asset files.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle
- `cleanup_assets` (boolean): Delete orphaned asset files from the Assets directory
- `group_index` (number, required): Group index (0-based)
- `layer_index` (number): Layer index within the group (0-based, required when target=layer)
- `target` (string, required): Whether to remove a single layer or an entire group

### `set_glass_effects` (~169 tokens)

Configure Liquid Glass effects (specular, blur, shadow, translucency) on a layer group in an existing .icon bundle.

Input parameters:

- `blend_mode` (string): Blend mode
- `blur_material`: Blur amount (0-1, null to disable)
- `bundle_path` (string, required): Path to .icon bundle
- `group_index` (number): Group index to modify (0-based)
- `lighting` (string): Lighting mode
- `opacity` (number): Group opacity
- `shadow_kind` (string): Shadow type
- `shadow_opacity` (number): Shadow opacity
- `specular` (boolean): Enable/disable specular highlights
- `translucency_enabled` (boolean): Enable translucency
- `translucency_value` (number): Translucency amount

### `set_appearances` (~340 tokens)

Set dark mode or tinted mode appearance overrides for the icon background fill, layer group, or individual layer properties.

Input parameters:

- `appearance` (string, required): Appearance mode
- `bg_color` (string): Background color hex for this appearance (target=fill)
- `blend_mode` (string): Blend mode for this appearance (target=layer)
- `blur_material`: Blur material for this appearance (target=group)
- `bundle_path` (string, required): Path to .icon bundle
- `fill_color` (string): Fill color hex for this appearance (target=layer)
- `group_index` (number): Group index (for target=group or target=layer)
- `hidden` (boolean): Hidden state for this appearance (target=group or target=layer)
- `layer_index` (number): Layer index within the group (required when target=layer)
- `opacity` (number): Opacity for this appearance (target=group or target=layer)
- `position_offset_x` (number): Position X offset for this appearance
- `position_offset_y` (number): Position Y offset for this appearance
- `position_scale` (number): Position scale for this appearance
- `shadow_kind` (string): Shadow kind (target=group)
- `shadow_opacity` (number): Shadow opacity (target=group)
- `specular` (boolean): Specular for this appearance (target=group)
- `target` (string, required): What to set appearance on
- `translucency_enabled` (boolean): Enable translucency for this appearance (target=group)
- `translucency_value` (number): Translucency amount for this appearance (target=group)

### `export_preview` (~227 tokens)

Render a preview of an .icon bundle. Uses Apple's ictool for Liquid Glass rendering by default (falls back to flat composite if Icon Composer is not installed). Supports canvas backgrounds and zoom.

Input parameters:

- `appearance` (string): Appearance mode to preview (omit for default/light)
- `apple_preset` (string): Apple Icon Composer preset background (overrides canvas_bg)
- `bundle_path` (string, required): Path to .icon bundle
- `canvas_bg` (string): Simple preset canvas background
- `canvas_bg_color` (string): Custom hex color for canvas background
- `canvas_bg_image` (string): Path to custom background image
- `flat` (boolean): Force flat composite rendering (skip ictool/Liquid Glass)
- `output_path` (string, required): Output path for the PNG file
- `return_image` (boolean): Return the rendered image inline as base64 (default true)
- `size` (number): Output size in pixels
- `zoom` (number): Zoom level — icon size relative to canvas (1.0 = full canvas, 0.5 = half size)

### `read_icon` (~39 tokens)

Read and inspect an existing .icon bundle. Returns the manifest JSON and list of assets.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle

### `set_fill` (~94 tokens)

Set the background fill of an .icon bundle. Supports solid colors and gradients.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle
- `color` (string): Hex color for solid fill or gradient bottom
- `color2` (string): Second hex color for gradient top
- `fill_type` (string, required): Fill type
- `gradient_angle` (number): Gradient angle in degrees (0 = bottom to top)

### `set_layer_position` (~167 tokens)

Set the scale (zoom) and offset of a layer or group within the .icon bundle. Use to zoom the glyph in/out or reposition it.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle
- `group_index` (number): Group index (0-based)
- `layer_index` (number): Layer index within the group (0-based, required for target=layer)
- `offset_x` (number): X offset in points
- `offset_y` (number): Y offset in points
- `scale` (number): Scale factor (0.05-3.0, where 1.0 = full size, 0.5 = half, 2.0 = double)
- `target` (string): Whether to set position on a layer or group

### `toggle_fx` (~66 tokens)

Enable or disable all Liquid Glass effects (specular, shadow, blur, translucency) on every group in the .icon bundle at once.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle
- `enabled` (boolean, required): true to enable all FX, false to disable

### `render_liquid_glass` (~300 tokens)

Render a pixel-perfect Liquid Glass preview using Apple's ictool. Produces the exact same rendering as iOS 26. Requires Icon Composer.app installed.

Input parameters:

- `apple_preset` (string): Apple Icon Composer preset background (overrides canvas_bg)
- `bundle_path` (string, required): Path to .icon bundle
- `canvas_bg` (string): Simple preset canvas background
- `canvas_bg_color` (string): Custom hex color for canvas background
- `canvas_bg_image` (string): Path to custom background image
- `height` (number): Output height in pixels
- `light_angle` (number): Light angle in degrees (0-360). Controls direction of specular highlights and shadows.
- `output_path` (string, required): Output path for the PNG file
- `platform` (string): Target platform
- `rendition` (string): Appearance rendition
- `return_image` (boolean): Return the rendered image inline as base64 (default true)
- `scale` (number): Scale factor (1x, 2x, 3x)
- `tint_color` (number): Tint hue (0-1) for tinted renditions
- `tint_strength` (number): Tint strength (0-1) for tinted renditions
- `width` (number): Output width in pixels
- `zoom` (number): Zoom level — icon size relative to canvas (1.0 = full canvas, 0.5 = half size)

### `export_marketing` (~108 tokens)

Export a flat marketing PNG for App Store Connect. No Liquid Glass effects, no alpha channel. Produces a 1024x1024 (default) opaque PNG ready for upload.

Input parameters:

- `bundle_path` (string, required): Path to .icon bundle
- `output_path` (string, required): Output path for the PNG file
- `return_image` (boolean): Return the rendered image inline as base64 (default true)
- `size` (number): Output size in pixels (default 1024)

## Diagnostics

Captured diagnostic sections: Provenance, Vulnerabilities, Dependencies. The full working is on the page: https://verifymcp.io/servers/ethbak-icon-composer-mcp/icon-composer-mcp#diagnostics

## Score history

- 2026-08-03: 74
- 2026-08-02: 74
- 2026-08-01: 29
- 2026-07-31: 24
- 2026-07-30: 32
- 2026-07-28: 50
- 2026-07-27: 24

## Links

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