Skip to main content
Glama

Edit Image

imageat_edit_image

Edit an image by selecting a feature ID (e.g., remove-background, object-eraser) and providing an image URL. Optionally add a prompt or mask for advanced edits.

Instructions

Edit an image using one of ImageAT's edit features. Pass the feature id (e.g. remove-background, object-eraser, relight, virtual-try-on, city-teleport, ai-edit-pro).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
promptNo
featureYesEdit feature id.
maskUrlNo
optionsNo
imageUrlYesImage to edit: base64 data URL or http(s) URL.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure, yet it only says 'edit'. It does not disclose whether the edit is applied in place, returns a new image, consumes credits, requires authentication, or behaves asynchronously.

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 a single compact sentence with no filler. It front-loads the purpose and adds useful concrete examples of allowed feature ids.

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

Completeness2/5

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

For a 5-parameter tool with nested options, no annotations, and no output schema, this description is incomplete. An agent cannot know which features require which optional parameters or what a successful call returns.

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

Parameters2/5

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

Schema coverage is only 40%, and the description contributes little beyond feature id examples. prompt, maskUrl, and options are left undefined, and options is a free-form nested object that needs more explanation.

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?

The description names a specific action and resource ('Edit an image') and lists concrete feature ids, so an agent can tell this is an image-editing tool. It does not explicitly compare to the sibling generate tools, but the edit verb is enough to distinguish it from generation.

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 or mention of when generate_image or generate_video would be preferable. The only usage hint is to pass a feature id, which is already required by the schema.

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