Vision 分析
- 作者仓库星标 12,348
- 作者仓库 skills
Vision Analysis
Analyze images using the MiniMax MiniMax_understand_image MCP tool available in the MiniMax Token Plan.
Prerequisites
- MiniMax Token Plan subscription with valid
MINIMAX_API_KEY - MiniMax MCP configured (
MiniMax_understand_imagetool available)
If MCP tool is not configured
Step 1: The agent should fetch setup instructions from: https://platform.minimaxi.com/docs/token-plan/mcp-guide
Step 2: Detect the user's environment (OpenCode, Cursor, Claude Code, etc.) and output the exact commands needed. Common examples:
OpenCode — add to ~/.config/opencode/opencode.json or package.json:
{
"mcp": {
"MiniMax": {
"type": "local",
"command": ["uvx", "minimax-coding-plan-mcp", "-y"],
"environment": {
"MINIMAX_API_KEY": "YOUR_TOKEN_PLAN_KEY",
"MINIMAX_API_HOST": "https://api.minimaxi.com"
},
"enabled": true
}
}
}
Claude Code:
claude mcp add -s user MiniMax --env MINIMAX_API_KEY=your-key --env MINIMAX_API_HOST=https://api.minimaxi.com -- uvx minimax-coding-plan-mcp -y
Cursor — add to MCP settings:
{
"mcpServers": {
"MiniMax": {
"command": "uvx",
"args": ["minimax-coding-plan-mcp"],
"env": {
"MINIMAX_API_KEY": "your-key",
"MINIMAX_API_HOST": "https://api.minimaxi.com"
}
}
}
}
Step 3: After configuration, tell the user to restart their app and verify with /mcp.
Important: If the user does not have a MiniMax Token Plan subscription, inform them that the understand_image tool requires one — it cannot be used with free or other tier API keys.
Analysis Modes
| Mode | When to use | Prompt strategy |
|---|---|---|
describe |
General image understanding | Ask for detailed description |
ocr |
Text extraction from screenshots, documents | Ask to extract all text verbatim |
ui-review |
UI mockups, wireframes, design files | Ask for design critique with suggestions |
chart-data |
Charts, graphs, data visualizations | Ask to extract data points and trends |
object-detect |
Identify objects, people, activities | Ask to list and locate all elements |
Workflow
Step 1: Auto-detect image
The skill triggers automatically when a message contains an image file path or URL with extensions:
.jpg, .jpeg, .png, .gif, .webp, .bmp, .svg
Extract the image path from the message.
Step 2: Select analysis mode and call MCP tool
Use the MiniMax_understand_image tool with a mode-specific prompt:
describe:
Provide a detailed description of this image. Include: main subject, setting/background,
colors/style, any text visible, notable objects, and overall composition.
ocr:
Extract all text visible in this image verbatim. Preserve structure and formatting
(headers, lists, columns). If no text is found, say so.
ui-review:
You are a UI/UX design reviewer. Analyze this interface mockup or design. Provide:
(1) Strengths — what works well, (2) Issues — usability or design problems,
(3) Specific, actionable suggestions for improvement. Be constructive and detailed.
chart-data:
Extract all data from this chart or graph. List: chart title, axis labels, all
data points/series with values if readable, and a brief summary of the trend.
object-detect:
List all distinct objects, people, and activities you can identify. For each,
describe what it is and its approximate location in the image.
Step 3: Present results
Return the analysis clearly. For describe, use readable prose. For ocr, preserve structure. For ui-review, use a structured critique format.
Output Format Example
For describe mode:
## Image Description
[Detailed description of the image contents...]
For ocr mode:
## Extracted Text
[Preserved text structure from the image]
For ui-review mode:
## UI Design Review
### Strengths
- ...
### Issues
- ...
### Suggestions
- ...
Notes
- Images up to 20MB supported (JPEG, PNG, GIF, WebP)
- Local file paths work if MiniMax MCP is configured with file access
- The
MiniMax_understand_imagetool is provided by theminimax-coding-plan-mcppackage
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @MiniMax-AI · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 需要 · Vendor-specific
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
# Step 3: Present results
Return the analysis clearly. For `describe`, use readable prose. For `ocr`, preserve structure. For `ui-review`, use a structured critique format. Workflow
The skill triggers automatically when a message contains an image file path or URL with extensions: .jpg, .jpeg, .png, .gif, .webp, .bmp, .svg Extract the image path from the message.
Use the MiniMaxunderstandimage tool with a mode-specific prompt: describe: ocr:
Return the analysis clearly. For describe, use readable prose. For ocr, preserve structure. For ui-review, use a structured critique format.
# Vision Analysis
Analyze images using the MiniMax `MiniMax_understand_image` MCP tool available in the MiniMax Token Plan.
## Prerequisites
- MiniMax Token Plan subscription with valid `MINIMAX_API_KEY`
- MiniMax MCP configured (`MiniMax_understand_image` tool available)
### If MCP tool is not configured
**Step 1:** The agent should fetch setup instructions from:
**https://platform.minimaxi.com/docs/token-plan/mcp-guide**
**Step 2:** Detect the user's environment (OpenCode, Cursor, Claude Code, etc.) and output the exact commands needed. Common examples:
**OpenCode** — add to `~/.config/opencode/opencode.json` or `package.json`:
```json
{
"mcp": {
"MiniMax": {
"type": "local",
"command": ["uvx", "minimax-coding-plan-mcp", "-y"],
"environment": {
"MINIMAX_API_KEY": "YOUR_TOKEN_PLAN_KEY",
"MINIMAX_API_HOST": "https://api.minimaxi.com"
},
"enabled": true
}
}
}
```
**Claude Code**:
```bash
claude mcp add -s user MiniMax --env MINIMAX_API_KEY=your-key --env MINIMAX_API_HOST=https://api.minimaxi.com -- uvx minimax-coding-plan-mcp -y
```
**Cursor** — add to MCP settings:
```json
{
"mcpServers": {
"MiniMax": {
"command": "uvx",
"args": ["minimax-coding-plan-mcp"],
"env": {
"MINIMAX_API_KEY": "your-key",
"MINIMAX_API_HOST": "https://api.minimaxi.com"
}
}
}
}
```
**Step 3:** After configuration, tell the user to restart their app and verify with `/mcp`.
**Important:** If the user does not have a MiniMax Token Plan subscription, inform them that the `understand_image` tool requires one — it cannot be used with free or other tier API keys.
## Analysis Modes
| Mode | When to use | Prompt strategy |
|---|---|---|
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Prerequisites → If MCP tool is not configured → Analysis Modes → Workflow → Step 1: Auto-detect image → Step 2: Select analysis mode and call MCP tool
要点 -> Step 1 · https://platform.minimaxi.com/docs/token-plan/mcp-guide · Step 2 · OpenCode · Claude Code · Cursor · Step 3 · Important
文件/命令 -> MiniMaxunderstandimage · MINIMAXAPIKEY · ~/.config/opencode/opencode.json · package.json · /mcp · understandimage · describe · ocr
内容 SHA-256 -> 8727e5f3eab1
方法与流程
适用与边界
原文中的明确线索
MiniMaxunderstandimage、MINIMAXAPIKEY、~/.config/opencode/opencode.json、package.json、/mcp、understandimage、describe、ocr