Skip to main content
Glama

Peekaboo MCP

by steipete

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

NameRequiredDescriptionDefault
image_pathNoRequired. Absolute path to image file (.png, .jpg, .webp) to be analyzed.
provider_configNoOptional. Explicit provider/model. Validated against server's PEEKABOO_AI_PROVIDERS.
questionYesRequired. Question for the AI about the image.

Input Schema (JSON Schema)

{ "properties": { "image_path": { "description": "Required. Absolute path to image file (.png, .jpg, .webp) to be analyzed.", "type": "string" }, "provider_config": { "description": "Optional. Explicit provider/model. Validated against server's PEEKABOO_AI_PROVIDERS.", "properties": { "model": { "description": "Optional. Model name. If omitted, uses model from server's PEEKABOO_AI_PROVIDERS for chosen provider, or an internal default for that provider.", "type": "string" }, "type": { "default": "auto", "description": "AI provider, default: auto. 'auto' uses server's PEEKABOO_AI_PROVIDERS environment preference. Specific provider must be enabled in server's PEEKABOO_AI_PROVIDERS.", "enum": [ "auto", "ollama", "openai" ], "type": "string" } }, "type": "object" }, "question": { "description": "Required. Question for the AI about the image.", "type": "string" } }, "required": [ "question" ], "type": "object" }

You must be authenticated.

Other Tools from Peekaboo MCP

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/steipete/Peekaboo'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server