# io.github.theluckystrike/image (mcpb · image.mcpb)

Resize, convert, compress, crop, thumbnail and watermark images from your AI chat.

- Trust score: 49/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- mcpb · `image.mcpb`: 49/100 (this document), [markdown](https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb.md), [page](https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/image.mcpb`
- Version: `0.22.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-09-21.

- **Supply Chain Security**: 23/100
  - Malware scan not yet available for this package.
  - Known CVEs were checked across the 157 of 157 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - 51 of 157 dependencies flagged as unhealthy.
- **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 3 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1789 tokens (~137/item across 13 items; 12 tools + 1 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 12 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 13 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/image.mcpb`

## 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-09-18 (score 49)

First indexed and scored.

## MCP tools (12)

### `image_info` (~79 tokens)

Inspect an image

Call this tool to inspect an image: format, pixel dimensions, megapixels, file size in bytes, and whether it carries an alpha channel. Read-only, never modifies the file. Free tier: unlimited, any size.

Input parameters:

- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory

### `image_resize` (~182 tokens)

Resize an image

Call this tool to write a resized copy. fit inside keeps aspect; cover fills and crops; exact stretches. One of width/height alone keeps aspect. Input untouched. Free: sources up to 4 MP.

Input parameters:

- `fit` (string): inside = fit within the box, cover = fill and crop, exact = stretch
- `height` (integer): Target height in pixels
- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory
- `width` (integer): Target width in pixels

### `image_convert` (~178 tokens)

Convert an image to another format

Call this tool to re-encode an image as PNG, JPEG, BMP, GIF or TIFF. quality is JPEG-only. Transparency converted to JPEG flattens onto white; the answer says so. Free tier: sources up to 4 MP.

Input parameters:

- `format` (string, required): The output format
- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory
- `quality` (integer): JPEG quality 1-100, default 80. Ignored for the other formats

### `image_compress` (~232 tokens)

Compress an image

Call this tool to re-encode an image smaller and report byte counts before/after. quality (default 80) applies to JPEG; for PNG only max_width shrinks it, and the answer names which one worked. Free: sources up to 4 MP.

Input parameters:

- `max_bytes` (integer): Largest the output may be, in bytes. The server searches JPEG quality down from `quality` until it fits and reports the quality it used. JPEG output only
- `max_width` (integer): Scale down so the width is at most this, keeping the aspect ratio. Never scales up
- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory
- `quality` (integer): JPEG quality 1-100, default 80

### `image_crop` (~218 tokens)

Crop an image

Call this tool to cut a rectangle out of an image. x, y are the top-left corner in pixels from the image's top-left. A rectangle past an edge is refused with the image's real size, not clamped. Free: sources up to 4 MP.

Input parameters:

- `height` (integer, required): Height of the crop in pixels
- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory
- `width` (integer, required): Width of the crop in pixels
- `x` (integer, required): Left edge of the crop, in pixels from the left of the image
- `y` (integer, required): Top edge of the crop, in pixels from the top of the image

### `image_thumbnails` (~145 tokens)

Make thumbnails

Call this tool to write one thumbnail per input into out_dir as <name>-thumb.<ext>, fit inside size by size, aspect kept. Paths are reserved before writing, so a collision leaves nothing half-done. Free: 5/call, 4 MP.

Input parameters:

- `out_dir` (string, required): Directory to write the thumbnails into. It is created if missing
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `paths` (array, required): The image files to make thumbnails of
- `size` (integer): Longest side of the thumbnail in pixels, default 256

### `image_watermark` (~198 tokens)

Watermark an image with text

Call this tool to draw text over an image at a chosen corner and opacity. With no text, the shared business profile name is used, drawn white on a translucent plate. Free tier: the profile name; Pro: any text.

Input parameters:

- `opacity` (number): 0.05 to 1, default 0.5
- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory
- `position` (string): Where to draw it
- `text` (string): The watermark text. Default: the business name from the shared profile. Custom text is Pro

### `image_strip_metadata` (~150 tokens)

Strip metadata from an image

Call this tool to write a copy carrying pixels and nothing else: it decodes and re-encodes from raw pixels, so EXIF, GPS, camera, capture time, XMP and colour-profile data are dropped. Free tier: sources up to 4 MP.

Input parameters:

- `out_path` (string, required): Path of the file to write. The extension decides the output format; without a known one the input's format is kept
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory

### `image_batch_resize` (~149 tokens)

Resize several images at once

Call this tool to resize every image in paths at once, keeping aspect ratio, each named <name>-<W>x<H>.<ext>. One of width/height lets the other follow; with both, each fits inside the box. Free: 5 files a call, 4 MP.

Input parameters:

- `height` (integer): Target height in pixels
- `out_dir` (string, required): Directory to write into. It is created if missing
- `overwrite` (boolean): Replace out_path if it already exists. Default false. Never allows an output to be one of the inputs
- `paths` (array, required): The image files to resize
- `width` (integer): Target width in pixels

### `image_dominant_colors` (~105 tokens)

Read the dominant colours of an image

Call this tool to read the colours covering most of an image, as hex codes with each one's pixel share. Sampled from a 200 px copy, so cost is fixed. Read-only. Free gives the top 3; Pro up to 16.

Input parameters:

- `count` (integer): How many colours to report, default 5
- `path` (string, required): Path to the image file. ~ is expanded; a relative path is resolved against the working directory

### `license_status` (~54 tokens)

License status

Report this server's licence state: product, tier free or pro, licence id, expiry, the key source and the upgrade URL. No arguments, no network. Explains a free-tier refusal; license_activate installs a key.

### `license_activate` (~71 tokens)

Activate license

Activate a Pro key (MCPL1.xxx.yyy) from checkout: verified offline against a built-in public key, saved to your config file. A wrong, malformed or expired key is refused, unsaved. license_status reads it back.

Input parameters:

- `key` (string, required): License key from the checkout confirmation page

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb#diagnostics

## Score history

- 2026-09-21: 49
- 2026-09-20: 49
- 2026-09-19: 49
- 2026-09-18: 49

## Common questions

### What is the io.github.theluckystrike/image MCP server?

io.github.theluckystrike/image is an MCP server listed in the public MCP registry as io.github.theluckystrike/image. Resize, convert, compress, crop, thumbnail and watermark images from your AI chat. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/image.mcpb).

### Is the io.github.theluckystrike/image MCP server safe to use?

io.github.theluckystrike/image scores 49 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.theluckystrike/image MCP server expose?

io.github.theluckystrike/image exposes 12 tools: image_info, image_resize, image_convert, image_compress, image_crop, and 7 more. Their descriptions and schemas cost roughly 1,761 tokens of context every time the server is loaded.

### What licence is the io.github.theluckystrike/image MCP server under?

io.github.theluckystrike/image declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/theluckystrike/mcp-servers
- Website: https://mcp.zovo.one/s/image
- Changelog RSS feed: https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb.xml
- Changelog JSON feed: https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb.json
- HTML version of this page: https://verifymcp.io/servers/theluckystrike-image/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-image-mcpb
