# com.bestremotetools/image-resize-convert-compress-crop (mcpb · image.mcpb)

Resize, convert, compress, crop and watermark images from chat, with a real byte count each time.

- Trust score: 54/100 (low)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- mcpb · `image.mcpb`: 54/100 (this document), [markdown](https://verifymcp.io/servers/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb.md), [page](https://verifymcp.io/servers/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/image.mcpb`
- Version: `0.21.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-20.

- **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 13 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 84/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 1725 tokens (~132/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**: 37/100
  - Stability observed for 11 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.
- **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.

## Install

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.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-19 (score 54, +1)

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

### 2026-09-17 (score 53, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-09 (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 into out_dir, keeping aspect ratio, named <name>-<W>x<H>.<ext>. One of width/height lets the other follow; with both, each fits inside the box. Free: 5 files/call, up to 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` (~101 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, for picking a background or brand palette. Read-only. Free tier: top 3 colours; 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` (~23 tokens)

License status

Show whether this server runs in free or Pro mode and where to upgrade.

### `license_activate` (~42 tokens)

Activate license

Activate a Pro license key (format MCPL1.xxx.yyy). Verified offline and saved locally.

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/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb#diagnostics

## Score history

- 2026-09-20: 54
- 2026-09-19: 54
- 2026-09-18: 53
- 2026-09-17: 53
- 2026-09-16: 49
- 2026-09-15: 49
- 2026-09-14: 49
- 2026-09-13: 49
- 2026-09-12: 49
- 2026-09-11: 49
- 2026-09-10: 49
- 2026-09-09: 49

## Common questions

### What is the com.bestremotetools/image-resize-convert-compress-crop MCP server?

com.bestremotetools/image-resize-convert-compress-crop is an MCP server listed in the public MCP registry as com.bestremotetools/image-resize-convert-compress-crop. Resize, convert, compress, crop and watermark images from chat, with a real byte count each time. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/image.mcpb).

### Is the com.bestremotetools/image-resize-convert-compress-crop MCP server safe to use?

com.bestremotetools/image-resize-convert-compress-crop scores 54 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 com.bestremotetools/image-resize-convert-compress-crop MCP server expose?

com.bestremotetools/image-resize-convert-compress-crop exposes 12 tools: image_info, image_resize, image_convert, image_compress, image_crop, and 7 more. Their descriptions and schemas cost roughly 1,697 tokens of context every time the server is loaded.

### What licence is the com.bestremotetools/image-resize-convert-compress-crop MCP server under?

com.bestremotetools/image-resize-convert-compress-crop 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/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb.json
- HTML version of this page: https://verifymcp.io/servers/com-bestremotetools-image-resize-convert-compress-crop/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-image-mcpb
