Skip to main content
Glama

get_project_info

Retrieve current Adobe Premiere Pro project details including name, path, settings, and status to manage video editing workflows.

Instructions

Gets comprehensive information about the current project including name, path, settings, and status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registration of the 'get_project_info' tool in the getAvailableTools() array, including its name, description, and input schema.
      name: 'get_project_info',
      description: 'Gets comprehensive information about the current project including name, path, settings, and status.',
      inputSchema: z.object({})
    },
  • Input schema for get_project_info tool: empty object (no parameters required).
      inputSchema: z.object({})
    },
  • Handler function that executes ExtendScript to fetch current Premiere Pro project details like name, path, active sequence, item/sequence counts, and dirty status.
    private async getProjectInfo(): Promise<any> {
      const script = `
        try {
          var project = app.project;
          JSON.stringify({
            success: true,
            name: project.name,
            path: project.path,
            activeSequence: project.activeSequence ? {
              id: project.activeSequence.sequenceID,
              name: project.activeSequence.name
            } : null,
            itemCount: project.rootItem.children.numItems,
            sequenceCount: project.sequences.numSequences,
            isDirty: project.dirty,
            hasActiveSequence: project.activeSequence !== null
          });
        } catch (e) {
          JSON.stringify({
            success: false,
            error: e.toString()
          });
        }
      `;
      
      return await this.bridge.executeScript(script);
    }
  • Dispatch/execution case in executeTool switch statement that calls the getProjectInfo handler.
    case 'get_project_info':
      return await this.getProjectInfo();
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states the tool retrieves information but lacks details on permissions, rate limits, or response format. For a read-only tool with zero annotation coverage, this is a significant gap in behavioral disclosure.

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?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary details. Every word earns its place, making it highly concise and well-structured for quick understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema), the description is adequate but incomplete. It covers what information is retrieved but lacks context on behavioral traits like permissions or output format, which is a gap since no annotations or output schema exist to compensate.

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?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter details, earning a baseline score of 4 for not overloading the description with redundant information.

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 tool's purpose with a specific verb ('Gets') and resource ('comprehensive information about the current project'), including details like name, path, settings, and status. It distinguishes from siblings by focusing on project metadata rather than editing or media operations, though it doesn't explicitly name alternatives.

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?

The description provides no guidance on when to use this tool versus alternatives. It implies usage for retrieving project information but doesn't specify context, prerequisites, or exclusions, such as whether a project must be open or how it differs from other listing 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