OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add imsus/pi-extension-minimax-coding-plan-mcp --skill minimax-image-understanding
Analyze images using AI with the understand_image tool
npx skills add imsus/pi-extension-minimax-coding-plan-mcp --skill minimax-image-understanding
Use this skill when you need to analyze, describe, or extract information from images.
Call the understand_image tool directly with a prompt and image URL:
Use understand_image when:
Do NOT use understand_image when:
Endpoint: POST {api_host}/v1/coding_plan/vlm
Request Body:
Response Format:
The tool automatically handles three types of image inputs:
HTTP/HTTPS URLs: Downloads the image and converts to base64
https://example.com/image.jpgLocal file paths: Reads local files and converts to base64
/Users/username/Documents/image.pngimages/photo.png@ prefix if presentBase64 data URLs: Passes through existing base64 data
data:image/png;base64,iVBORw0KGgo...Supported:
Not supported:
{
"content": "AI analysis of the image...",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}understand_image({
prompt: "What is the error message and where is it located in this screenshot?",
image_url: "./error-screenshot.png"
})understand_image({
prompt: "What code is shown in this screenshot? Please transcribe it exactly.",
image_url: "https://example.com/code.png"
})understand_image({
prompt: "Analyze this UI design. What is working well and what could be improved?",
image_url: "https://example.com/mockup.png"
})understand_image({
prompt: "Extract all text from this image",
image_url: "/Users/username/Documents/scan.png"
})