Skip to main content
Glama

save_project_as

Save the current Adobe Premiere Pro project with a new name and location to create backups or versions.

Instructions

Saves the current project with a new name and location.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe new name for the project
locationYesThe absolute directory path where the project should be saved

Implementation Reference

  • The handler function that implements the core logic of the 'save_project_as' tool. It generates an ExtendScript snippet to invoke Premiere Pro's `app.project.saveAs(newPath)` method with the user-provided name and location, then executes it via the bridge.
    private async saveProjectAs(name: string, location: string): Promise<any> {
      const script = `
        try {
          var project = app.project;
          var newPath = "${location}/${name}.prproj";
          project.saveAs(newPath);
          
          JSON.stringify({
            success: true,
            message: "Project saved as: " + newPath,
            newPath: newPath
          });
        } catch (e) {
          JSON.stringify({
            success: false,
            error: e.toString()
          });
        }
      `;
      
      return await this.bridge.executeScript(script);
    }
  • Input schema for the 'save_project_as' tool using Zod, defining required string parameters 'name' and 'location'.
      name: 'save_project_as',
      description: 'Saves the current project with a new name and location.',
      inputSchema: z.object({
        name: z.string().describe('The new name for the project'),
        location: z.string().describe('The absolute directory path where the project should be saved')
      })
    },
  • Registration in the executeTool switch statement that routes calls to the 'save_project_as' handler.
    return await this.saveProjectAs(args.name, args.location);
  • TypeScript declaration of the saveProjectAs method in the built distribution.
    private saveProjectAs;
Behavior2/5

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

With no annotations provided, the description carries full burden. It states the tool saves with modifications but doesn't disclose whether this creates a new project file, overwrites existing files, requires specific permissions, or what happens to the original project. For a mutation tool with zero annotation coverage, this is insufficient behavioral context.

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?

Single sentence with zero waste. Front-loaded with the core action, efficiently communicates the essential functionality without unnecessary elaboration. Perfectly sized for the tool's complexity.

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 mutation tool with no annotations and no output schema, the description is inadequate. It doesn't explain what the tool returns, error conditions, side effects, or how it differs from similar tools. Given the context of video editing tools, more detail about project state changes would be expected.

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%, providing clear documentation for both parameters. The description adds minimal value beyond the schema by implying these parameters define the save operation, but doesn't elaborate on format constraints, validation rules, or interaction effects. Baseline 3 is appropriate when schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('saves') and resource ('current project') with specific modifications ('with a new name and location'). It distinguishes from 'save_project' by specifying 'as' functionality, though not explicitly naming the sibling. Purpose is clear but could be more explicit about differentiation.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like 'save_project' or 'create_project'. The description implies it's for saving an existing project with modifications, but doesn't specify prerequisites (e.g., requires an open project) or contrast with similar tools.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hetpatel-11/Adobe_Premiere_Pro_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server