Skip to main content
Glama

simplengat_generate_image

Create images from text prompts or reference images. Select a nano-banana model, set quantity and aspect ratio, and produce up to 4 images per request.

Instructions

Generate images (text-to-image or image-to-image). Models: nano-banana-pro, nano-banana-2, nano-banana-2-lite. Cost 0.25 credit/image. POST /api/v1/generate/image

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo1-4, default 1
modelNoDefault nano-banana-pro
promptYesDescription of the image you want to generate
aspectRatioNoDefault portrait
referenceImagesNoReference image URLs (max 10). If provided -> image-to-image mode

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses the generation modes, supported models, cost per image, and the POST endpoint. It does not, however, describe the expected response format, whether generation is asynchronous, or any authentication/rate-limit behavior, which are material for an agent invoking the tool.

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

Conciseness5/5

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

The description is compact and information-dense: purpose, modes, models, cost, and endpoint are packed into three short sentences with no filler. The core purpose is front-loaded.

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 generation tool with no output schema and no annotations, the description covers invocation basics (modes, models, pricing, endpoint) and the schema covers parameters. The main gap is the absence of any statement about what the tool returns or whether results come back synchronously, which an agent would need after calling it.

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 the schema already documents all five parameters. The description repeats model names that are already enumerated and gives no new meaning for parameters like count, aspectRatio, or referenceImages, so it adds little beyond the baseline.

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

Purpose5/5

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

The description opens with the specific verb 'Generate' and the resource 'images', and distinguishes the two supported modes (text-to-image and image-to-image). It also lists the available models, so an agent can immediately know what this tool does and can tell it apart from video generation or upscaling siblings.

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

Usage Guidelines3/5

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

The description establishes clear context: it is for generating images rather than video/upscaling. However, it never explicitly says when to prefer this tool over a sibling or when not to use it, so the guidance is only implied by the resource name and sibling tool names.

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