Skip to main content
Glama
23d1
by 23d1

Render a frame to look at

ae_save_frame
Read-only

Render a composition frame as a PNG to visually verify your After Effects work after edits. See the actual comp output to confirm changes landed correctly.

Instructions

Render a single frame of a composition to PNG and return it as an image, so you can see what the comp actually looks like. Use this to check your work after making changes — don't assume an edit landed the way you intended.

The PNG has a transparent background: a composition's background color is an After Effects preview setting and never renders. Add a solid layer if you need an opaque backdrop.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
compNoComposition name, project item id, or index. Omit for the active comp.
timeNoSeconds, or frames as "48f". Omit for the current playhead position.
maxSizeNoLongest edge in pixels for the returned image. Default: 1200.
outputPathNoAbsolute path to keep the PNG. Omit to use a temp file.
returnImageNoEmbed the PNG in the response. Default: true. Set false to only write the file.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: the PNG has a transparent background because comp background color is a preview setting and never renders, and it advises adding a solid layer for an opaque backdrop. This is exactly the kind of non-obvious behavior an agent needs to know. It doesn't mention performance or file size implications, but the transparency disclosure is significant.

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 two short paragraphs, front-loaded with the core action and purpose. Every sentence earns its place: the first sentence states what it does, the second explains when to use it, and the third paragraph discloses a critical behavioral gotcha. No fluff or repetition.

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?

For a read-only preview tool with 100% schema coverage and no output schema, the description is nearly complete. It covers the core action, the use case, and the transparent-background gotcha. It could mention that the returned image is what the agent will see (i.e., the response contains the image), but the returnImage parameter and the phrase 'return it as an image' already imply that. The only minor gap is not explaining what happens if the comp is missing or the time is invalid, but that's not essential for a read-only tool.

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 100%, so the schema already documents all 5 parameters. The description adds context about the default behavior (returning an image) and the transparent background, but doesn't add much per-parameter meaning beyond what the schema provides. Baseline 3 is appropriate.

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 states a specific verb ('Render a single frame... to PNG and return it as an image') and resource ('a composition'), and clearly distinguishes it from the sibling ae_render by emphasizing single-frame preview and visual checking. It also explains the purpose ('so you can see what the comp actually looks like'), which helps an agent understand when to use it.

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?

The description explicitly says to use this tool to check work after making changes and warns not to assume an edit landed as intended. It also provides a clear exclusion/alternative context by contrasting with rendering a full composition (sibling ae_render), and gives practical guidance about transparent backgrounds. This is strong usage guidance.

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