vision_analyze
Analyze an image via a chosen cloud vision model. Supply provider ID, image URL/base64/path, and a prompt to receive structured results such as summaries, OCR text, and detected objects.
Instructions
使用用户明确指定的云端视觉模型分析一张图片。必须提供 provider_id,且必须且只能提供 image_url、image_base64、image_path 之一。不要在参数中传递 API Key。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | 分析模式:general 通用 / ocr 文字 / document 文档 / screenshot 截图 | general |
| prompt | Yes | 用户希望对图片执行的分析任务 | |
| image_url | No | 可由服务端访问的公网 HTTP/HTTPS 图片 URL | |
| image_path | No | MCP Server 所在机器上、位于允许目录内的本地图片绝对路径 | |
| provider_id | Yes | vision_list_models 返回的视觉模型 ID | |
| image_base64 | No | 纯 Base64 图片,或 data:image/...;base64,... | |
| image_mime_type | No | Base64 图片的 MIME 类型,例如 image/png | |
| include_raw_response | No | 是否返回视觉供应商原始文本,仅调试时使用 |