Skip to main content
Glama

create_draft

Validate and build a new self-contained Jianying/CapCut draft project from a plan, copying media and writing project files unless dry_run is enabled.

Instructions

Validate/build a new self-contained Mac draft; does not register it in the native app.

plan fields: name, width=1920, height=1080, fps=30, clips=[]. Each clip: id(optional unique ASCII), kind(video/audio/image/text), track, start, duration. Media requires absolute path, optional source_start=0, speed=1, volume=1. Text requires text, optional font_size=48, color=#FFFFFF, x=0,y=-0.75. Coordinates are normalized; font size has an experimental /6 mapping to native schema units. Same-track overlaps are rejected; overlays need separate tracks. Duration is timeline seconds, source duration=duration*speed. dry_run=True writes nothing; false copies media and writes a new project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
planYes
dry_runNo
include_planNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.2/5.0
Behavior4/5

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

Discloses concrete behavior: dry_run=True writes nothing, false copies media and writes a new project; validation rejects same-track overlaps; experimental font /6 mapping. This adds significant value beyond annotations (readOnly=false, destructive=false). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Compact but information-dense; the description flows logically from purpose to plan fields to clip details and execution behavior, with the main scoping sentence first. Though dense, every sentence earns its place given the complexity.

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?

For a tool with a nested plan object and 0% schema coverage, the description covers all required semantics: field structure, defaults, validation rules, execution modes (dry_run), and behavioral constraints. It is fully sufficient for an agent to build a valid call, and no output schema exists to rely on.

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 has 0% parameter descriptions, so the description must compensate. It thoroughly documents the plan object structure, defaults, clip requirements, coordinate system, and dry_run semantics. Only include_plan is not explained, but its purpose is self-evident from its name.

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?

Description states a specific verb 'Validate/build' and resource 'a new self-contained Mac draft', and explicitly notes it does not register in the native app – a distinguishing trait from siblings like publish_draft or edit_draft. This is far from tautological and clearly identifies the tool's function.

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 gives clear context (for creating a self-contained draft without native registration) and implies use cases from the 'does not register' note, but it does not explicitly compare to alternatives like edit_draft or publish_draft, nor state when not to use it. Some reasoning is left to the agent.

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