# image-processing MCP server

Image processing for AI agents. Resize, convert, compress, and pipeline images.

## Links
- Registry page: https://www.getdrio.com/mcp/ai-pictomancer-image-processing
- Repository: https://gitlab.com/pictomancer.ai/pig-gateway

## Install
- Endpoint: https://api.pictomancer.ai/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://api.pictomancer.ai/mcp

## Tools
- get_format_info - Get supported formats and options

Returns supported output formats and their configurable options.

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://api.pictomancer.ai/mcp
- estimate_cost - Estimate the price of an operation

Returns the exact USD price this API would charge for an operation on an input of the given size, without fetching or processing anything. Free. Use it before paying: send X-Max-Cost-USD on the real request to have the API refuse (412) instead of charging more than you allowed. The list price is returned even when the request could end up free (free tier, or a compress that does not shrink the file).

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json

**Example Response:**
```json
{
  "operation": "Operation",
  "price_usd": 1.0,
  "base_usd": 1.0,
  "surcharges_usd": {},
  "size_multiplier": 1.0,
  "within_free_tier": true,
  "free_tier_remaining": 1,
  "currency": "Currency",
  "network": "Network"
}
``` Endpoint: https://api.pictomancer.ai/mcp
- analyze_image - Analyze an image

Fetch an image from a URL or base64 and return its metadata: size in bytes, pixel dimensions, source format, and what it costs every supported vision model in tokens. Always free. Dimensions are omitted if the image header cannot be read. Also reports whether the input carries a C2PA (Content Credentials) manifest and in which container; the manifest is not validated.

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json

**Example Response:**
```json
{
  "size_bytes": 1,
  "c2pa_manifest": true
}
``` Endpoint: https://api.pictomancer.ai/mcp
- resize_image - Resize an image

Scale an image by a factor, or fill an exact box. Use 'scale' for uniform scaling, or 'scale_x'/'scale_y' for independent axes (float factors, e.g. 0.5 = half size). Alternatively set 'width'+'height' for fill mode: resize and smart-crop to those exact dimensions in one call (optional 'gravity', default attention). The two modes are mutually exclusive. Optional enhancement modifiers: denoise (1-3), equalize, sharpen (applied denoise -> equalize -> op -> sharpen).

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- compress_image - Compress an image

Re-encode an image with quality/format options to reduce file size. Supports jpeg, png, webp, tiff, gif. Instead of a q number you can set quality_target (0-1]: the smallest file with SSIM at or above the target, searched on the worker (jpeg, webp, avif; flat surcharge; outcome reported in X-Pictomancer-Quality-* headers). If the output is not smaller than the input, the request is free (X-Pig-Billed: 0) and does not consume free-tier quota. Optional enhancement modifiers: denoise (1-3), equalize, sharpen (applied denoise -> equalize -> op -> sharpen).

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- convert_image - Convert image format

Convert an image to a different format (jpeg, png, webp, tiff, gif, avif). Optionally set quality, strip metadata, enable lossless mode (webp, avif), or tune encoder effort (avif). Instead of a q number you can set quality_target (0-1]: the smallest file with SSIM at or above the target, searched on the worker (jpeg, webp, avif; flat surcharge; outcome reported in X-Pictomancer-Quality-* headers). Optional enhancement modifiers: denoise (1-3), equalize, sharpen (applied denoise -> equalize -> op -> sharpen).

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- crop_image - Crop an image

Extract a rectangular region from an image, in one of three mutually exclusive modes. Manual: give the top-left corner (x, y) and dimensions (width, height) in pixels. Smart crop: give 'gravity' (attention, entropy, centre) plus width and height; the window is picked automatically, clamped to the source if the target is larger. Trim: set 'trim: true' (optional 'threshold') to remove a uniform background border via content detection; the applied rect is reported in X-Pictomancer-Trim-* headers. Optional enhancement modifiers: denoise (1-3), equalize, sharpen (applied denoise -> equalize -> op -> sharpen).

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- optimize_for_vision - Resize an image for a vision model

Resize an image to the largest size a given vision model still benefits from, and report what it costs that model in tokens before and after. Every provider downscales oversized input before counting tokens, so this alone saves bytes and upload latency rather than tokens. Pass max_tokens to trade resolution for tokens: that lever is continuous on Claude, unavailable on OpenAI (cost follows the aspect ratio alone), and on Gemini reaches only a flat 258. An image already within budget is returned untouched and free (X-Pig-Billed: 0).

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- optimize_generated_image - Optimize an AI-generated image for the web

The step after image generation. gpt-image, DALL-E, Flux, Midjourney and Stable Diffusion hand back 2-8 MB PNGs; this returns the same picture as a web-ready webp (default), avif, jpeg or png, metadata stripped, transparency kept on webp/avif/png. Optional max_dimension caps the longest side (never upscales); optional q or quality_target (smallest file with SSIM >= target, flat surcharge) control quality. Same price as convert. If the result is not smaller than the input it is still returned but free (X-Pig-Billed: 0). X-Pictomancer-Bytes-Before/-After/-Saved-Percent report the saving. The input's C2PA manifest, if any, is reported in X-Pictomancer-C2PA-Input but is not carried over: re-encoding invalidates it.

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp
- image_pipeline - Run a multi-step image pipeline

Chain multiple operations (resize, compress, convert, crop) in sequence. The image is fetched once, then each operation is applied to the output of the previous one. Max 10 operations per pipeline.

### Responses:

**200**: Processed image binary (Success Response)
Content-Type: application/json
Content-Type: image/jpeg

**Example Response:**
```json
"string"
```
Content-Type: image/png

**Example Response:**
```json
"string"
```
Content-Type: image/webp

**Example Response:**
```json
"string"
``` Endpoint: https://api.pictomancer.ai/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: ai.pictomancer
- Version: 0.3.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: May 3, 2026
- Source: https://registry.modelcontextprotocol.io
