mcp_vision_augment_vision
Empower text-only LLMs to see and understand images, extract text via OCR, and parse documents, returning structured JSON output.
Instructions
多模态视觉工具:为无视觉能力的 LLM 提供看图、OCR 与文档解析能力。
返回统一 JSON envelope:{task_type, tool_used, code, error, result, confidence, metadata}。 视觉理解按配置的 OpenAI 兼容通道依次降级,最后兜底本地 Ollama VL 模型; OCR 与文档解析在本地完成(RapidOCR / markitdown)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | No | reasoning 时的提问内容(如“请描述这张图片”),其他任务忽略 | |
| source | Yes | 输入:本地文件路径 / file:// / http(s)://(需 VISION_AUGMENT_ALLOW_URLS=true)/ data:URL | |
| language | No | OCR 语言:ch/en/japan/korea/latin,仅 ocr 任务生效 | ch |
| task_type | Yes | 任务类型:reasoning=视觉理解(看图问答);ocr=图像文字识别;document=文档解析(docx/pdf/pptx/xlsx/html/md) |