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

Tool pages

Each operation has a dedicated page:

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/es/api-docs.

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/es/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

Pricing: https://morphix.tools/es/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

Comparisons (alternatives)

Reference links