mcp_openrouter_multi_image_analysis
Analyze multiple images simultaneously with a single prompt to receive detailed insights and structured responses about visual content.
Instructions
Analyze multiple images at once with a single prompt and receive detailed responses
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| images | Yes | Array of image objects to analyze | |
| prompt | Yes | Prompt for analyzing the images | |
| markdown_response | No | Whether to format the response in Markdown (default: true) | |
| model | No | OpenRouter model to use. If not specified, the system will use a free model with vision capabilities or the default model. |
Input Schema (JSON Schema)
{
"properties": {
"images": {
"description": "Array of image objects to analyze",
"items": {
"properties": {
"alt": {
"description": "Optional alt text or description of the image",
"type": "string"
},
"url": {
"description": "URL or data URL of the image (use http(s):// for web images, absolute file paths for local files, or data:image/xxx;base64,... for base64 encoded images)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": "array"
},
"markdown_response": {
"default": true,
"description": "Whether to format the response in Markdown (default: true)",
"type": "boolean"
},
"model": {
"description": "OpenRouter model to use. If not specified, the system will use a free model with vision capabilities or the default model.",
"type": "string"
},
"prompt": {
"description": "Prompt for analyzing the images",
"type": "string"
}
},
"required": [
"images",
"prompt"
],
"type": "object"
}