Skip to main content
Glama

text_create

Creates an editable GIMP text layer at a specified pixel position and returns the new layer ID for further artwork edits.

Instructions

Create an editable GIMP text layer at pixel position x/y. Size is pixels; returns the new layer_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYes
yYes
sizeNo
textYes
font_nameNoSans
session_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full disclosure burden. It does disclose the mutation ('Create'), the editability of the resulting layer, and the returned layer_id, but is silent on session requirements, undo behavior, and what happens if no document is open.

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?

Two tight sentences with the primary action front-loaded and the return value appended. No filler or redundancy.

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?

An output schema exists, so the return value need not be explained. However, for a mutation tool with zero annotations and 0% schema description coverage across 6 parameters, the description leaves the session lifecycle and several parameter semantics unaddressed.

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 0%, so the description must compensate. It usefully clarifies that x/y are pixel positions and size is in pixels, but leaves text, font_name, and the required session_id unexplained beyond their names and schema defaults.

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 ('Create an editable GIMP text layer') with the positioning semantics, which distinguishes it from the generic layer_create sibling. It does not name layer_create explicitly, but the 'text layer' qualifier is enough for an agent to differentiate.

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 explicit guidance on when to use this versus layer_create or other creation paths, nor any stated prerequisites such as an active session or document. Usage is only inferable from the tool name and verb.

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