INDIVIDUAL MCP TOOL
image_batch_resize
Call this tool to resize every image in paths at once, keeping aspect ratio, each named <name>-<W>x<H>.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/thumbnails
Connect to this endpoint to inspect the live schema for image_batch_resize and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.mcp-image]
url = "https://mcp.zovo.one/mcp/thumbnails"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-image": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/thumbnails"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-image
Remote MCP URL: https://mcp.zovo.one/mcp/thumbnails
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"mcp-image": {
"url": "https://mcp.zovo.one/mcp/thumbnails"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-image": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/thumbnails"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-image",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/thumbnails"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
image_info— Call this tool to inspect an image: format, pixel dimensions, megapixels, file size in bytes, and whether it carries an alpha channel.image_resize— Call this tool to write a resized copy.image_convert— Call this tool to re-encode an image as PNG, JPEG, BMP, GIF or TIFF.image_compress— Call this tool to re-encode an image smaller and report byte counts before/after.image_crop— Call this tool to cut a rectangle out of an image.image_thumbnails— Call this tool to write one thumbnail per input into out_dir as <name>-thumb.image_watermark— Not available on this hosted endpoint: the watermark is drawn with bitmap font files loaded from a filesystem, which this endpoint does not have.image_strip_metadata— Call this tool to write a copy carrying pixels and nothing else: it decodes and re-encodes from raw pixels, so EXIF, GPS, camera, capture time, XMP and colour-profile data are dropped.