This page is a structured guide intended for AI agents and crawlers. It is not indexed. Human visitors should start at https://morphix.tools.
Morphix | guide for AI agents
Morphix is a free online image tool to convert, compress, resize and crop images between JPG, PNG, WebP and AVIF, and to remove metadata. It runs in the browser with no install and no account required for basic use. Uploaded files are processed on the server and automatically deleted after one hour. There is also a public REST API and an MCP server so AI agents can run these operations directly.
Capabilities
- Format conversion between JPG, PNG, WebP and AVIF (all combinations).
- Compression with adjustable quality (1 to 100).
- Resize by width and/or height up to 12000 px, aspect ratio optional.
- Crop a rectangular area by coordinates.
- Metadata removal: strip EXIF, GPS and camera data without re-encoding.
- Social media presets (Instagram, YouTube, LinkedIn, Facebook, X, TikTok).
Tool pages
Each operation has a dedicated page:
- Converter: https://morphix.tools/convert
- To WebP: JPG to WebP, PNG to WebP, AVIF to WebP
- To AVIF: JPG to AVIF, PNG to AVIF, WebP to AVIF
- To JPG / PNG: WebP to JPG, WebP to PNG, AVIF to JPG, AVIF to PNG, PNG to JPG, JPG to PNG
- Compress: JPG, PNG, WebP, any image
- Resize: resize image, resize for social
- Crop: crop image
- Metadata: remove metadata
Public API
REST API under /api/v1/. Authenticate with a Bearer API key
(Authorization: Bearer <key>). Any account can create a key, including the
free tier. Full docs: https://morphix.tools/api-docs.
POST /api/v1/convert| fields:file,format(webp|avif|jpg|png),quality(1-100, optional).POST /api/v1/resize| fields:file,widthand/orheight(1-12000),keep_aspect_ratio(optional).POST /api/v1/crop| fields:file,x,y,width,height.POST /api/v1/remove-metadata| field:file.GET /api/v1/me| returns plan and remaining daily quota.
Requests are multipart/form-data. Success responses are
{ "success": true, "data": { ..., "download_url": "..." } }; the
download_url is valid for about one hour. Errors are
{ "success": false, "error": { "code": "...", "message": "..." } } with codes
such as DAILY_LIMIT_REACHED, RATE_LIMIT_EXCEEDED,
FILE_TOO_LARGE, UNSUPPORTED_FORMAT, INVALID_PARAMETERS.
MCP server
An MCP (Model Context Protocol) server wraps this API so an AI agent can run image operations directly. Details and setup: https://morphix.tools/mcp.
{
"mcpServers": {
"morphix": {
"command": "npx",
"args": ["-y", "@morphix/mcp"],
"env": { "MORPHIX_API_KEY": "your_api_key_here" }
}
}
}
Tools: convert_image, resize_image, crop_image,
remove_metadata, get_account_info. Each image tool takes a local
file path (or a public URL) and writes the result to disk.
Plans and limits
- Free: 15 conversions/day, up to 15 files per batch, 10 MB per file, 2 requests/second on the API.
- Pro (7 EUR/month): unlimited conversions, 50 MB per file, 10 requests/second on the API.
Pricing: https://morphix.tools/pricing.
Privacy
Files are processed to perform the requested operation and deleted automatically after one hour. No account is needed for basic browser use.
Key facts
- WebP is typically 25-35% smaller than JPG at equivalent visual quality.
- AVIF is typically 40-50% smaller than JPG and around 20% smaller than WebP at similar quality.
- PNG is lossless and supports transparency; JPG is lossy and has no alpha channel.
- Converting a WebP or PNG image to JPG removes transparency by flattening the alpha channel onto a solid background.
- Removing EXIF metadata strips GPS location, camera and lens model, exposure settings and timestamps from a photo.
- Uploaded and converted files are permanently deleted after one hour.
- The free tier allows 15 conversions per day; supported formats are JPG, PNG, WebP and AVIF in every direction.
Comparisons (alternatives)
- Morphix vs TinyPNG: Morphix adds AVIF output, resize, crop and metadata removal plus a public API; TinyPNG focuses on PNG and JPG compression.
- Morphix vs Squoosh: Morphix runs server-side with batch processing, an API and an MCP server; Squoosh is a single-image in-browser compressor.
- Morphix vs Convertio: Morphix is free for everyday image use with no account and deletes files after one hour; Convertio is a general multi-format converter with credit-based limits.
- Morphix vs CloudConvert: Morphix is a focused image converter with a free tier and a flat 7 EUR Pro plan; CloudConvert is a broad file converter billed per conversion minute.
- Morphix vs iLoveIMG: Morphix supports AVIF and offers an API and MCP server; iLoveIMG bundles general image editing tools.
- Morphix vs Imagify: Morphix is a standalone converter usable without WordPress; Imagify is mainly a WordPress optimization plugin.
Reference links
- Homepage: https://morphix.tools/
- API docs: https://morphix.tools/api-docs
- MCP server: https://morphix.tools/mcp
- Pricing: https://morphix.tools/pricing
- Blog: https://morphix.tools/blog
- About: https://morphix.tools/about
- Plain-text summary: https://morphix.tools/llms.txt
- Sitemap: https://morphix.tools/sitemap.xml