Skip to main content
Glama

photoshop_select_ellipse

Create elliptical or circular selections in Photoshop from pixel coordinates to mask, vignette, or apply radial edits.

Instructions

Create an elliptical pixel selection from a bounding box (anti-aliased).

Use when: circular or oval masks, vignettes, or radial edits inside a region. Do NOT use when: a rectangular region is enough — use photoshop_select_rectangle.

Returns: JSON { ok, summary, details: { shape, bounds?, context } }. Preconditions: active document; right > left and bottom > top. Side effects: replaces current selection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topYesTop edge of bounding box in pixels
leftYesLeft edge of bounding box in pixels
rightYesRight edge of bounding box in pixels
bottomYesBottom edge of bounding box in pixels
document_idNoOptional Photoshop document id from photoshop_get_state / photoshop_list_documents. When set, the tool activates that document before running so a UI tab switch cannot retarget the edit.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden. It discloses side effects ('replaces current selection'), preconditions ('active document; right > left and bottom > top'), and return shape. This is comprehensive for a selection 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?

Tightly structured with scannable sections: purpose, use cases, return format, preconditions, and side effects. Every sentence delivers useful information with no filler.

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

Completeness5/5

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

The tool has a simple parameter set but no output schema or annotations. The description covers the return JSON, preconditions, side effects, and sibling differentiation. Nothing essential is missing for correct invocation.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema by defining the bounding-box relationship (right > left, bottom > top) and noting the anti-aliased nature, which helps the agent validate inputs.

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 clearly states the tool creates an elliptical pixel selection from a bounding box Sunday anti-aliased. It explicitly differentiates from photoshop_select_rectangle, so an agent can identify the correct tool without opening the schema.

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

Usage Guidelines5/5

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

Provides explicit use cases 'circular or oval masks, vignettes, or radial edits inside a region' and an explicit exclusion 'Do NOT use when: a rectangular region is enough — use photoshop_select_rectangle.' This gives unambiguous routing guidance.

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

Deploy Server

Other Tools