Tinify image tools
NPM · @TINIFY-DEV/MCP · SCANNED AUG 3
Compress, resize, crop, and convert images with the Tinify.dev API from any MCP client.
Available components
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. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 7 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability56
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 902 tokens (~180/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage98
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 92% of tool parameters carry a description.Partial
- Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @tinify-dev/mcp
claude mcp add dev-tinify-mcp -- npx -y @tinify-dev/mcp
codex mcp add dev-tinify-mcp -- npx -y @tinify-dev/mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"dev-tinify-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@tinify-dev/mcp"
],
"enabled": true
}
}
} openclaw mcp add dev-tinify-mcp --command npx --arg -y --arg @tinify-dev/mcp
mcp_servers:
dev-tinify-mcp:
command: "npx"
args: ["-y", "@tinify-dev/mcp"] {
"mcpServers": {
"dev-tinify-mcp": {
"command": "npx",
"args": [
"-y",
"@tinify-dev/mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +56
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Security disclosure: fail → unverified ▼ functional
- Schema quality: unverified → good ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- License: unverified → pass ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- Licence: MIT functional
- 1 Aug 26 −14
- Tool coverage: 100 → unverified ▼ functional
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 28 Jul 26 +20
- Tool coverage: unverified → 100 ▲ functional
- First check of Schema quality: unverified functional
- First check of Schema quality: fail functional
- First check of Tool coverage: 92 functional
- First check of Schema quality: fail functional
- First check of Tool coverage: 100 functional
- 27 Jul 26 6
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@tinify-dev/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 96 packages
96 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
compress_image Compress image ~216
Compress a PNG, JPEG, WebP, or AVIF image with Tinify.dev and write the smaller file next to the original (or to output_path). The API never returns more bytes than it received; when it cannot shrink the file the tool says so honestly (optimized: false) instead of pretending.
| Name | Type | Req | Description |
|---|---|---|---|
| output_path | string | — | Absolute path to write the result. Default: <name>.min.<ext> next to the input. The source image is never overwritten unless output_path points at it AND overwrite is true. |
| overwrite | boolean | — | Allow replacing an existing file at the output path. Default false. |
| path | string | yes | Absolute path to the image (png, jpg, jpeg, webp, avif; max 40 MB). |
| quality_mode | string | — | balanced (default), best_quality, or lossless. lossless is rejected for JPEG inputs. |
| target_size_kb | integer | — | Aim for a result at or below this many kilobytes (beta; server rollout). |
| Name | Type | Req | Description |
|---|---|---|---|
| change_percent | number | yes | Byte change in percent; negative means smaller. |
| height | number|null | yes | — |
| optimized | boolean|null | yes | false when the API could not shrink the file and returned the original bytes; null when the concept does not apply (resize/crop). |
| original_bytes | number | yes | Input size in bytes. |
| output_path | string|null | yes | Where the result was written, or null when nothing was written. |
| request_id | string | yes | Quote this when contacting support. |
| result_bytes | number | yes | Result size in bytes. |
| saved_bytes | number | yes | original_bytes - result_bytes. |
| width | number|null | yes | — |
| wrote | boolean | yes | Whether a file was written. |
No examples provided.
convert_image Convert image format ~184
Convert an image to AVIF, WebP, JPEG, or PNG with Tinify.dev (beta endpoint; may not be enabled on every account yet). Writes <name>.min.<new-ext> next to the original unless output_path is given. Converting to the same format is rejected by the API (same_format_conversion).
| Name | Type | Req | Description |
|---|---|---|---|
| format | string | yes | Target format. |
| output_path | string | — | Absolute path to write the result. Default: <name>.min.<ext> next to the input. The source image is never overwritten unless output_path points at it AND overwrite is true. |
| overwrite | boolean | — | Allow replacing an existing file at the output path. Default false. |
| path | string | yes | Absolute path to the image (png, jpg, jpeg, webp, avif; max 40 MB). |
| quality_mode | string | — | — |
| Name | Type | Req | Description |
|---|---|---|---|
| change_percent | number | yes | Byte change in percent; negative means smaller. |
| height | number|null | yes | — |
| optimized | boolean|null | yes | false when the API could not shrink the file and returned the original bytes; null when the concept does not apply (resize/crop). |
| original_bytes | number | yes | Input size in bytes. |
| output_path | string|null | yes | Where the result was written, or null when nothing was written. |
| request_id | string | yes | Quote this when contacting support. |
| result_bytes | number | yes | Result size in bytes. |
| saved_bytes | number | yes | original_bytes - result_bytes. |
| width | number|null | yes | — |
| wrote | boolean | yes | Whether a file was written. |
No examples provided.
crop_image Crop image ~196
Crop a PNG, JPEG, WebP, or AVIF image with Tinify.dev to the given rectangle and write the result next to the original (or to output_path). The source image is never overwritten silently.
| Name | Type | Req | Description |
|---|---|---|---|
| height | integer | yes | Crop height in pixels. |
| output_path | string | — | Absolute path to write the result. Default: <name>.min.<ext> next to the input. The source image is never overwritten unless output_path points at it AND overwrite is true. |
| overwrite | boolean | — | Allow replacing an existing file at the output path. Default false. |
| path | string | yes | Absolute path to the image (png, jpg, jpeg, webp, avif; max 40 MB). |
| width | integer | yes | Crop width in pixels. |
| x | integer | yes | Left edge of the crop rectangle in pixels. |
| y | integer | yes | Top edge of the crop rectangle in pixels. |
| Name | Type | Req | Description |
|---|---|---|---|
| change_percent | number | yes | Byte change in percent; negative means smaller. |
| height | number|null | yes | — |
| optimized | boolean|null | yes | false when the API could not shrink the file and returned the original bytes; null when the concept does not apply (resize/crop). |
| original_bytes | number | yes | Input size in bytes. |
| output_path | string|null | yes | Where the result was written, or null when nothing was written. |
| request_id | string | yes | Quote this when contacting support. |
| result_bytes | number | yes | Result size in bytes. |
| saved_bytes | number | yes | original_bytes - result_bytes. |
| width | number|null | yes | — |
| wrote | boolean | yes | Whether a file was written. |
No examples provided.
get_usage Get account usage ~32
Show the Tinify.dev account's current billing-period usage: plan, period, operations included, used, and remaining.
Input schema present but exposes no named parameters.
| Name | Type | Req | Description |
|---|---|---|---|
| included | number | yes | — |
| period_end | string | yes | — |
| period_start | string | yes | — |
| plan | string | yes | — |
| remaining | number | yes | — |
| request_id | string | yes | — |
| reserved | number | yes | — |
| used | number | yes | — |
No examples provided.
resize_image Resize image ~213
Resize a PNG, JPEG, WebP, or AVIF image with Tinify.dev by width, height, or scale, and write the result next to the original (or to output_path). At least one of width, height, or scale is required. The source image is never overwritten silently.
| Name | Type | Req | Description |
|---|---|---|---|
| height | integer | — | Target height in pixels. |
| keep_aspect_ratio | boolean | — | — |
| output_path | string | — | Absolute path to write the result. Default: <name>.min.<ext> next to the input. The source image is never overwritten unless output_path points at it AND overwrite is true. |
| overwrite | boolean | — | Allow replacing an existing file at the output path. Default false. |
| path | string | yes | Absolute path to the image (png, jpg, jpeg, webp, avif; max 40 MB). |
| scale | number | — | Scale factor, e.g. 0.5 halves both dimensions. |
| width | integer | — | Target width in pixels. |
| Name | Type | Req | Description |
|---|---|---|---|
| change_percent | number | yes | Byte change in percent; negative means smaller. |
| height | number|null | yes | — |
| optimized | boolean|null | yes | false when the API could not shrink the file and returned the original bytes; null when the concept does not apply (resize/crop). |
| original_bytes | number | yes | Input size in bytes. |
| output_path | string|null | yes | Where the result was written, or null when nothing was written. |
| request_id | string | yes | Quote this when contacting support. |
| result_bytes | number | yes | Result size in bytes. |
| saved_bytes | number | yes | original_bytes - result_bytes. |
| width | number|null | yes | — |
| wrote | boolean | yes | Whether a file was written. |
No examples provided.