Skip to main content
Glama
Josusanz
by Josusanz

Create project

create_project
Destructive

Create a new Compositor .comp project with dimensions, resolution, and optional background color. Initializes an empty project or overwrites an existing package manifest.

Instructions

Creates a new empty .comp project. Optionally adds a solid background layer. Overwrites the manifest of an existing package at that path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPath to the .comp project package (a directory ending in .comp)
widthYes
heightYes
backgroundNoCSS color for a Background layer, e.g. #ffffff. Omit for a transparent document.
resolutionNoPixels per inch (default 72)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior4/5

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

Annotations already mark this as destructive, and the description adds specific destructive context: 'Overwrites the manifest of an existing package at that path.' This is useful beyond the boolean hint. It also discloses the optional background behavior, though it does not detail other side effects such as file preservation or return values.

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 concise, front-loaded sentences cover the core action, an optional behavior, and the destructive edge case. Every sentence adds distinct information with no filler.

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

Completeness4/5

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

The description is largely complete for an agent to understand what action will be performed Duff, especially with annotations and schema fields covering constraints. The main gaps are lack of explicit return-value information and no mention of what happens to other existing files besides the manifest, but these are minor given the schema and annotations.

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 60%, and the description only substantively adds meaning for the background parameter by calling it a 'solid background layer.' Width and height have no description in the schema or the tool description, leaving their units and exact purpose implied rather than explicit.

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 uses a specific verb and resource: 'Creates a new empty .comp project.' It also clarifies optional behavior (adding a background layer) and the overwrite behavior, which distinguishes it from sibling tools like replace_layer_image or export_flattened.

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 clearly implies the tool is for creating a new project or resetting/initializing one at a path. However, it does not explicitly state when to use this tool versus alternatives, nor does it provide any 'when not to use' guidance.

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