Skip to main content
Glama
ku1x
by ku1x

render-project

Render a saved After Effects project using aerender without opening the app. Starts the render, saves logs locally, and allows polling for status.

Instructions

Start aerender for a saved .aep project without an open bridge. Logs are saved locally. Poll get-render. The installed AE version must be able to open the project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNo
outputPathYes
compositionYes
projectPathYes
aerenderPathNo
outputTemplateNo
renderTemplateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that logs are saved locally, that the operation is asynchronous (poll get-render), and that the AE version must match the project. It doesn't cover error handling or return details, but for a render-start command it conveys the key side effects.

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?

Three concise sentences, with the core action and key constraints front-loaded. No wasted words.

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?

For a 7-parameter tool with no annotations and no output schema, the description is far from complete. It omits explanations for most parameters, return behavior, and failure modes. The useful bits (no bridge, logs, polling) are not enough to make this tool safely callable.

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 coverage is 0%, so the description must explain parameters. It only references 'saved .aep project' (projectPath) but says nothing about composition, outputPath, or the other 4 parameters. This leaves the agent guessing at what values are expected.

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 starts aerender for a saved .aep project, explicitly distinguishing it from a bridge-based render (without an open bridge). It also names the polling tool (get-render) and a version prerequisite, making the purpose unambiguous.

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

Usage Guidelines4/5

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

It gives a clear condition for use ('without an open bridge') and directs the agent to poll get-render afterward. It does not explicitly name alternatives like render-composition when a bridge is open, but the implied headless workflow is reasonably clear.

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