Skip to main content
Glama

session_create

Create a new isolated GIMP artwork session and XCF working document, returning a session_id required by all editing tools.

Instructions

Create a new isolated artwork session and XCF working document. Returns a session_id used by all editing tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
widthNo
heightNo
background_nameNoBackground

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/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 that the tool creates an isolated session and XCF working document and returns a session_id used by all editing tools, but it does not cover permissions, lifecycle, cleanup, or how this interacts with existing sessions.

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 tightly written sentences with zero waste. The creation purpose is front-loaded and the return usage is stated immediately after.

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?

The output schema exists, so return-value details are less necessary, and the description does mention session_id usage. However, for a session-creation tool with no annotations and undocumented parameters, it omits key context about when to create versus open a session and what the canvas parameters control.

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

Parameters1/5

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

Schema description coverage is 0% for three parameters, and the description does not mention width, height, or background_name at all. It adds no meaning beyond the parameter names and defaults already visible in the schema.

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: creating a new isolated artwork session and XCF working document. The word 'new' hints at the distinction from session_open, but no sibling is named, so it is clear without being explicitly differentiated from alternatives.

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 tool versus session_open or other session tools. The 'new' wording implies creating a fresh session, but no conditions, prerequisites, or exclusions are stated.

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