analyze
Analyze stored image files to understand content, extract text, or answer questions using AI. Configure the tool to use specific AI models or rely on server defaults for tasks like object identification or OCR.
Instructions
Analyzes a pre-existing image file from the local filesystem using a configured AI model.
This tool is useful when an image already exists (e.g., previously captured, downloaded, or generated) and you need to understand its content, extract text, or answer specific questions about it.
Capabilities:
- Image Understanding: Provide any question about the image (e.g., "What objects are in this picture?", "Describe the scene.", "Is there a red car?").
- Text Extraction (OCR): Ask the AI to extract text from the image (e.g., "What text is visible in this screenshot?").
- Flexible AI Configuration: Can use server-default AI providers/models or specify a particular one per call via 'provider_config'.
Example: If you have an image '/tmp/chart.png' showing a bar chart, you could ask: { "image_path": "/tmp/chart.png", "question": "Which category has the highest value in this bar chart?" } The AI will analyze the image and attempt to answer your question based on its visual content. Peekaboo MCP 1.1.0 using openai/gpt-4-vision, anthropic/claude-3-opus, google/gemini-pro-vision
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_path | No | Required. Absolute path to image file (.png, .jpg, .webp) to be analyzed. | |
provider_config | No | Optional. Explicit provider/model. Validated against server's PEEKABOO_AI_PROVIDERS. | |
question | Yes | Required. Question for the AI about the image. |