Skip to main content
Glama

describe

Generate AI descriptions of images from a file path or URL using Gemini, OpenAI, or Claude. Answer questions about visual content for AI agents that need to understand images.

Instructions

Get an AI-generated description of an image. Supports multiple providers (Gemini, OpenAI, Claude).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
imageYesPath to the image file or URL (http/https)
detailNoLevel of detail in the description (default: detailed)
promptNoOptional question or instruction for the description
providerNoVision provider to use (default: gemini)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing beyond the feature set: no API-key/auth requirements, no cost or latency implications of calling an external vision model, no error behavior for unsupported URLs. It does name the supported providers, but that detail is already captured by the provider enum.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two compact sentences, front-loaded with the core purpose. The provider sentence is mildly redundant with the provider enum but is cheap and informative at scan time.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a four-parameter tool with full schema coverage and no output schema, the description is minimally adequate. It omits what is actually returned (a text description), whether credentials/keys are needed, and how failures surface — gaps an agent would want before invoking an external vision provider.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are already documented with types, enums, and defaults in the schema. The description's mention of providers adds no syntax or semantic detail beyond what the schema states; baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Get an AI-generated description of an image.' Clear enough for an agent to identify it. However, it never distinguishes itself from its sibling describe_region (region-scoped) or detect, leaving the whole-image scope implicit rather than stated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use guidance, no exclusion criteria, and no mention of alternatives such as describe_region or detect. The agent must infer from the tool name alone which sibling to pick.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools