Skip to main content
Glama
leancoderkavy

Premiere Pro MCP Server

Create Mogrt Recipe

create_mogrt_recipe

Create a MOGRT recipe from a previewed After Effects project by confirming the export, using an approved workspace.

Instructions

Create exactly one previewed MOGRT recipe in a saved After Effects project inside the approved workspace. Requires explicit export confirmation; it never creates projects or output folders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
preview_tokenYesOne-time token returned by preview_mogrt_recipe; it expires after 10 minutes.
confirm_exportYesMust be true to save the open AE project and request the planned .mogrt export.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether the tool completed successfully.
dataNoTool-specific result data when ok is true.
toolYesThe registered MCP tool name.
errorNoFailure detail when ok is false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.14.9

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already signal that this is a non-read, non-idempotent, non-destructive action. The description adds useful behavioral boundaries: it never creates projects or output folders and requires explicit export confirmation. It could explicitly mention that the open AE project is saved, but the confirm_export parameter description covers that detail.

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 dense sentences front-load the core action and then add the most important behavioral caveats. There is no filler, and every phrase contributes either scope, a precondition, or a safety boundary.

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 non-trivial mutation/export tool, the description covers the key preconditions, constraints, and negative side effects. Combined with full schema descriptions and an output schema, it is sufficient for an agent to understand the workflow without needing return-value details repeated in prose.

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 both preview_token and confirm_export are already fully documented in the schema. The description adds only the general requirement of explicit export confirmation, which aligns with confirm_export but does not provide additional parameter-level meaning.

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 action—create exactly one previewed MOGRT recipe in a saved After Effects project—and clearly distinguishes it from preview-only and batch operations. Naming the scope ('saved project', 'approved workspace') helps an agent separate it from preview_mogrt_recipe and create_mogrt_batch.

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?

The description gives clear preconditions: the recipe must already be previewed, the project must be saved and in the approved workspace, and explicit export confirmation is required. It does not explicitly name alternatives or say 'do not use for batch', but the requirement of a preview token and 'exactly one' strongly imply the intended workflow.

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