Skip to main content
Glama

MCP Image Extractor

by ifmelate

extract_image_from_base64

Extract and process images from base64-encoded data for AI analysis. Convert screenshots, clipboard images, or embedded visuals into a format optimized for LLM use without accessing the file system.

Instructions

Extract and analyze images from base64-encoded data. Ideal for processing screenshots from clipboard, dynamically generated images, or images embedded in applications without requiring file system access.

Input Schema

NameRequiredDescriptionDefault
base64YesBase64-encoded image data to analyze (useful for screenshots, images from clipboard, or dynamically generated visuals)
max_heightNoFor backward compatibility only. Default maximum height is now 512px
max_widthNoFor backward compatibility only. Default maximum width is now 512px
mime_typeNoMIME type of the image (e.g., image/png, image/jpeg)image/png
resizeNoFor backward compatibility only. Images are always automatically resized to optimal dimensions (max 512x512) for LLM analysis

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "base64": { "description": "Base64-encoded image data to analyze (useful for screenshots, images from clipboard, or dynamically generated visuals)", "type": "string" }, "max_height": { "default": 512, "description": "For backward compatibility only. Default maximum height is now 512px", "type": "number" }, "max_width": { "default": 512, "description": "For backward compatibility only. Default maximum width is now 512px", "type": "number" }, "mime_type": { "default": "image/png", "description": "MIME type of the image (e.g., image/png, image/jpeg)", "type": "string" }, "resize": { "default": true, "description": "For backward compatibility only. Images are always automatically resized to optimal dimensions (max 512x512) for LLM analysis", "type": "boolean" } }, "required": [ "base64" ], "type": "object" }
Install Server

Other Tools from MCP Image Extractor

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/ifmelate/mcp-image-extractor'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server