MCP Image Extractor
@ifmelate
关于 MCP Image Extractor
MCP server which allow LLM in agent mode to analyze image whenever it needs
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"image-extractor": {
"command": "node",
"args": [
"/full/path/to/mcp-image-extractor/dist/index.js"
],
"disabled": false
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Image Extractor?
MCP Image Extractor is a Model Context Protocol server that extracts images from local files, URLs, or base64-encoded data and converts them to base64 for analysis by AI assistants. It is designed for developers who need to pass visual information to large language models (LLMs) within MCP-compatible tools like Cursor.
How to use MCP Image Extractor?
Install the server via npx in your .cursor/mcp.json configuration file (recommended), or clone the repository and build locally. Once configured, the server exposes three tools (extract_image_from_file, extract_image_from_url, extract_image_from_base64) that AI assistants can call automatically when instructed to analyze an image.
Key features of MCP Image Extractor
- Extract images from local file paths
- Extract images from remote URLs
- Process base64-encoded image data
- Automatic resizing to maximum 512x512 pixels
- Easy one-line install with npx
- Docker support for containerized deployments
Use cases of MCP Image Extractor
- Analyze Playwright test result screenshots
- Pass images from URLs to an LLM for description
- Decode and analyze base64 image data
- Integrate image analysis into AI assistant workflows
FAQ from MCP Image Extractor
What does MCP Image Extractor do?
It extracts images from local files, URLs, or base64 data and converts them to base64 so that an LLM (such as Claude) can analyze the visual content.
How do I install MCP Image Extractor?
The easiest method is to add a npx -y mcp-image-extractor command to your .cursor/mcp.json file. Alternatively, clone the repository, run npm install && npm run build && npm link, then reference the global command or the built file directly.
What tools does MCP Image Extractor provide?
It provides three tools: extract_image_from_file (accepts a file_path), extract_image_from_url (accepts a url), and extract_image_from_base64 (accepts base64 data and an optional mime_type).
Why are images resized to 512×512 pixels?
All extracted images are automatically resized to a maximum of 512×512 pixels to limit the base64 output size and optimize context‑window usage in LLM analysis.
How can I troubleshoot a “Failed to create client” error in Cursor?
If you see this error, try the local path installation method (pointing to the built index.js file) instead of the npx approach, or ensure the path to the executable is correct.
媒体与设计 分类下的更多 MCP 服务器

Google Maps
modelcontextprotocolModel Context Protocol Servers
Spotify MCP Server
marcelmaraisLightweight MCP server for Spotify
YouTube MCP Server
anaisbettsA Model-Context Protocol Server for YouTube
RustChain MCP
ScottcjnMCP server for RustChain blockchain and BoTTube video platform — AI agent tools for earning RTC tokens. Built on createkr's RustChain SDK.
KiCAD MCP: AI-Assisted PCB Design
mixelpixxKiCAD MCP is a Model Context Protocol (MCP) implementation that enables Large Language Models (LLMs) like Claude to directly interact with KiCAD for printed circuit board design.
评论