servers / ai-pictomancer-image-processing
ai.pictomancer/image-processing MCP server
communitystreamable_httpremoteunknownhealthy
Image processing for AI agents. Resize, convert, compress, and pipeline images.
01Tools · 10
How to read this: tool names here are observed from a live tools/list handshake. The Risk label is a heuristic inferred from the tool name (write/destructive verbs), not from executing the tool — a conservative guess, not a verified capability. We never escalate risk from a description. Found one that's wrong? Tell us — we fix on report.
| Tool | Risk | Side effects | Approval |
|---|---|---|---|
| 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"
``` | unknown | unknown | unknown |
| 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 | read | false | unknown |
| 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"
``` | unknown | unknown | unknown |
| 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
}
``` | read | false | unknown |
| 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"
}
``` | read | false | unknown |
| 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"
``` | unknown | unknown | unknown |
| 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"
``` | unknown | unknown | unknown |
| 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"
``` | unknown | unknown | unknown |
| 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"
``` | unknown | unknown | unknown |
| 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"
``` | read | false | unknown |
02Install & source
https://api.pictomancer.ai/mcp
remote_url05Provenance & freshness
sourcesOfficial MCP Registry [p1]
last_checked2026-08-19 21:53Z
next_check2026-08-21 21:51Z
cadenceevery 48h
verifiedtools_list:passed handshake:passed metadata:passed tools_list:passed handshake:passed metadata:passed tools_list:passed handshake:passed metadata:passed tools_list:passed
index_statusindex — 5 unique facts >= 5
06Badge
Add the “as seen on MCPExplorer” badge to your README.
[](https://mcpexplorer.com/servers/ai-pictomancer-image-processing)
Next step
This is one server. A loadout combines the right servers, governance, and proven plays for a whole job — assembled deliberately, not tool-dumped.
Explore loadouts →