save_project
Save the current video editing project to a JSON file at a specified path, preserving all edits and settings for later use or sharing.
Instructions
Save the project to JSON.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Save the current video editing project to a JSON file at a specified path, preserving all edits and settings for later use or sharing.
Save the project to JSON.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It says only 'Save the project to JSON' and does not mention side effects like overwriting existing files, file creation behavior, failure modes, whether the save is all-or-nothing, or any impact on the current in-memory project. It gives a future agent zero information about what happens beyond the button being pressed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, brief sentence with no filler words; every word carries meaning. It is appropriately front-loaded with the main action. However, the extreme brevity also sacrifices needed details, so it earns a not a 5, but it is not heavy-handed or redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Although the operation is conceptually simple (one string parameter, no output schema), the description omits essential context: the role of the path parameter, the meaning of 'save' (does it overwrite or create a new file?), and any interesting behavior such as formatting/scoping of the JSON. A complete description for this tool would at least say 'save the current project to the specified JSON path.' The current version leaves the agent uncertain about the exact effect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description ignores the single required 'path' parameter entirely. There is no explanation of what the path format should be, whether it must include a .json extension, whether directories need to pre-exist, or whether it refers to a file vs. directory. The description adds no semantic meaning beyond what a parameter name alone already implies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action (
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives such as create_project, load_project, checkpoint, or export_otio. There is no statement of prerequisites, context, or which operation should be preferred in which scenario. The reader must infer the use case from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.