# Spritesheet Forge (remote · mcp.clawstudiouo.com)

Game-dev sprite tools: PNG/GIF to spritesheet, split, trim, animate. OAuth-authenticated MCP server.

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

## Components

- remote · `mcp.clawstudiouo.com`: 68/100 (this document), [markdown](https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp.md), [page](https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp)

## Channel facts

- Endpoint: `https://mcp.clawstudiouo.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 86/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 46/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 2833 tokens (~354/item across 8 items; 8 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**: 94/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 79% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http laxy9887-spritesheet-forge https://mcp.clawstudiouo.com/mcp
```

### Codex

```toml
[mcp_servers.laxy9887-spritesheet-forge]
url = "https://mcp.clawstudiouo.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "laxy9887-spritesheet-forge": {
      "type": "remote",
      "url": "https://mcp.clawstudiouo.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add laxy9887-spritesheet-forge --url https://mcp.clawstudiouo.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  laxy9887-spritesheet-forge:
    url: "https://mcp.clawstudiouo.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "laxy9887-spritesheet-forge": {
      "type": "http",
      "url": "https://mcp.clawstudiouo.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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 68, +1)

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

### 2026-07-31 (score 67, +6)

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

### 2026-07-30 (score 61, +1)

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

### 2026-07-28 (score 60, +1)

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

### 2026-07-27 (score 59, +1)

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

### 2026-07-26 (score 58)

First indexed and scored.

## MCP tools (8)

### `server_info` (~57 tokens)

Returns this server's runtime configuration: upload endpoint URL, output file TTL, file size limits, and base64 encoding rules. Call this before working with large files (≥ 4 MB) or when building multi-step workflows that chain tool outputs.

Output parameters:

- `base64_threshold_bytes` (number): Files smaller than this can be sent as base64 data URIs
- `file_input_rules` (object): Guidance for agents on how to pass file inputs
- `max_file_bytes` (number): Maximum accepted file size in bytes
- `output_ttl_seconds` (number): Seconds until output files expire
- `upload_url` (string): URL for uploading files via multipart/form-data (Bearer token required)

### `png_to_spritesheet` (~585 tokens)

Merge multiple PNG files into a single spritesheet. Supports grid, horizontal, vertical, and packed (bin-packed) layouts with optional TexturePacker-compatible JSON metadata. Returns a download URL.

Input parameters:

- `align` (string)
- `bg_color` (string): "transparent" or hex "#RRGGBB"
- `cell_height` (integer): Required when cell_mode=fixed
- `cell_mode` (string): Cell sizing mode. Default: auto_max
- `cell_width` (integer): Required when cell_mode=fixed
- `columns` (integer): Grid columns. Auto-calculated if omitted.
- `extrude` (integer): Extrude outermost pixels by N px per frame
- `file_name_order` (boolean): Order frames by the numeric _N suffix in each filename (e.g. frame_00.png, frame_01.png) instead of by array order. REQUIRES every input filename to end with _N.<ext> — the name is taken from the URL…
- `files` (array, required): PNG files — HTTPS URLs, data URIs, or output URLs from previous tool calls (pass directly, no re-encoding needed). For local files < ~185 KB each: base64-encode the bytes and prepend "data:image/png;…
- `fit_mode` (string)
- `layout` (string): Frame arrangement. Default: grid
- `metadata_format` (string): Atlas metadata format. Required (non-none) when layout=packed
- `padding` (integer): Pixel gap between frames
- `power_of_2` (boolean): Pad output to next power of 2
- `trim_input` (boolean): Auto-trim transparent edges before compositing

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `split_spritesheet` (~325 tokens)

Slice a spritesheet PNG into individual frames, generate TexturePacker-compatible atlas JSON, or both. Provide columns+rows (grid mode) or cell_width+cell_height (cell mode).

Input parameters:

- `cell_height` (integer): Cell height in px (cell mode)
- `cell_width` (integer): Cell width in px (cell mode)
- `column_range` (string): e.g. "0-5" or "2"
- `columns` (integer): Grid columns (grid mode)
- `file` (string, required): Spritesheet PNG — HTTPS URL, data URI, or output URL from a previous tool call (pass directly, no re-encoding needed). For local files < 4 MB: base64-encode the bytes and prepend "data:image/png;base…
- `frame_count` (integer)
- `metadata_format` (string)
- `output` (string): Default: frames
- `padding` (integer)
- `row_range` (string)
- `rows` (integer): Grid rows (grid mode)
- `skip_empty` (boolean): Remove fully transparent frames. Default: true
- `trim_bottom` (integer)
- `trim_left` (integer)
- `trim_right` (integer)
- `trim_top` (integer)

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `trim_png` (~212 tokens)

Crop transparent edges from one or more PNG files. Single file returns PNG; multiple files return a ZIP.

Input parameters:

- `files` (array, required): PNG files — HTTPS URLs, data URIs, or output URLs from previous tool calls (pass directly, no re-encoding needed). For local files < ~185 KB each: base64-encode the bytes and prepend "data:image/png;…
- `padding` (integer): Transparent margin to preserve around trimmed content. Default: 0
- `threshold` (integer): Alpha threshold 0-255. Pixels with alpha ≤ threshold are trimmed. Default: 0

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `gif_to_spritesheet` (~262 tokens)

Convert a GIF animation into a spritesheet PNG with all frames arranged in a grid. Optionally remove the background.

Input parameters:

- `bg_color` (string): "auto" or hex "#RRGGBB". Default: "auto"
- `columns` (integer): Grid columns. Auto-calculated if omitted.
- `file` (string, required): GIF file — HTTPS URL, data URI, or output URL from a previous tool call (pass directly, no re-encoding needed). For local files < ~185 KB: base64-encode the bytes and prepend "data:image/gif;base64,"…
- `padding` (integer): Pixel gap between frames. Default: 0
- `remove_bg` (boolean): Remove background from each frame. Default: false
- `tolerance` (integer): Background removal threshold 0-255. Default: 30

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `gif_to_frames` (~219 tokens)

Extract all frames from a GIF and return them as individual PNGs in a ZIP archive.

Input parameters:

- `bg_color` (string): "auto" or hex "#RRGGBB"
- `file` (string, required): GIF file — HTTPS URL, data URI, or output URL from a previous tool call (pass directly, no re-encoding needed). For local files < ~185 KB: base64-encode the bytes and prepend "data:image/gif;base64,"…
- `remove_bg` (boolean): Remove background from each frame. Default: false
- `tolerance` (integer): Background removal threshold 0-255. Default: 30

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `frames_to_animation` (~480 tokens)

Assemble multiple PNG files into an animated GIF or animated WebP.

Input parameters:

- `bg_fill_color` (string): Fill color for resize=fill. Hex #RRGGBB. Default: #000000
- `duration` (integer): Frame duration in ms (10-10000). Default: 100
- `file_name_order` (boolean): Order frames by the numeric _N suffix in each filename (e.g. frame_00.png, frame_01.png) instead of by array order. REQUIRES every input filename to end with _N.<ext> — the name is taken from the URL…
- `files` (array, required): PNG frames — HTTPS URLs, data URIs, or output URLs from previous tool calls (pass directly, no re-encoding needed). For local files < 4 MB each: base64-encode the bytes and prepend "data:image/png;ba…
- `loop` (integer): Loop count. 0 = infinite. Default: 0
- `lossless` (boolean): WebP lossless mode. Default: false
- `output_format` (string): Output format. Default: gif
- `quality` (integer): WebP lossy quality 0-100. Default: 80
- `resize` (string): Dimension mismatch handling. Default: transparent

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

### `spritesheet_to_animation` (~425 tokens)

Slice a spritesheet PNG into frames and produce an animated GIF or WebP. Provide columns+rows (grid mode) or cell_width+cell_height (cell mode).

Input parameters:

- `cell_height` (integer): Cell height in px (cell mode)
- `cell_width` (integer): Cell width in px (cell mode)
- `column_range` (string): e.g. "0-5" or "2"
- `columns` (integer): Grid columns (grid mode)
- `duration` (integer): Frame duration in ms. Default: 100
- `file` (string, required): Spritesheet PNG — HTTPS URL, data URI, or output URL from a previous tool call (pass directly, no re-encoding needed). For local files < ~185 KB: base64-encode the bytes and prepend "data:image/png;b…
- `frame_count` (integer): Actual frame count for incomplete last row
- `loop` (integer): Loop count. 0 = infinite. Default: 0
- `lossless` (boolean): WebP lossless. Default: false
- `output_format` (string): Default: gif
- `padding` (integer): Pixel gap between cells. Default: 0
- `quality` (integer): WebP quality 0-100. Default: 80
- `row_range` (string)
- `rows` (integer): Grid rows (grid mode)
- `skip_empty` (boolean): Auto-remove fully transparent frames. Default: true
- `trim_bottom` (integer)
- `trim_left` (integer)
- `trim_right` (integer)
- `trim_top` (integer)

Output parameters:

- `content_type` (string): MIME type of the output file (image/png, image/gif, application/zip, etc.)
- `expires_at` (string): ISO 8601 expiry timestamp
- `quota` (object)
- `size_bytes` (number): Output file size in bytes
- `url` (string): Download URL for the output file (expires in 1 hour)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 67
- 2026-08-01: 67
- 2026-07-31: 67
- 2026-07-30: 61
- 2026-07-29: 60
- 2026-07-28: 60
- 2026-07-27: 59
- 2026-07-26: 58

## Links

- Remote endpoint: https://mcp.clawstudiouo.com/mcp
- Changelog RSS feed: https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/laxy9887-spritesheet-forge/mcp
