mcp_openrouter_analyze_image
Analyze images using OpenRouter vision models to answer questions about visual content, supporting various image sources and model selections.
Instructions
Analyze an image using OpenRouter vision models
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image_path | Yes | Path to the image file to analyze (can be an absolute file path, URL, or base64 data URL starting with "data:") | |
| question | No | Question to ask about the image | |
| model | No | OpenRouter model to use (e.g., "anthropic/claude-3.5-sonnet") |
Input Schema (JSON Schema)
{
"properties": {
"image_path": {
"description": "Path to the image file to analyze (can be an absolute file path, URL, or base64 data URL starting with \"data:\")",
"type": "string"
},
"model": {
"description": "OpenRouter model to use (e.g., \"anthropic/claude-3.5-sonnet\")",
"type": "string"
},
"question": {
"description": "Question to ask about the image",
"type": "string"
}
},
"required": [
"image_path"
],
"type": "object"
}