Skip to main content
Glama

get-help

Access guidance and support for using the After Effects MCP integration, enabling AI assistants and applications to control Adobe After Effects through a standardized protocol.

Instructions

Get help on using the After Effects MCP integration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The async handler function for the 'get-help' tool that returns comprehensive help text for using the After Effects MCP server, including installation steps, available scripts, and effect templates.
      async () => {
        return {
          content: [
            {
              type: "text",
              text: `# After Effects MCP Integration Help
    
    To use this integration with After Effects, follow these steps:
    
     1. **Install the scripts in After Effects**
       - Run \`node install-bridge.js\` with administrator privileges
       - This copies the necessary scripts to your After Effects installation
    
    2. **Open After Effects**
       - Launch Adobe After Effects 
       - Open a project that you want to work with
    
    3. **Open the MCP Bridge Auto panel**
       - In After Effects, go to Window > mcp-bridge-auto.jsx
       - The panel will automatically check for commands every few seconds
    
    4. **Run scripts through MCP**
       - Use the \`run-script\` tool to queue a command
       - The Auto panel will detect and run the command automatically
       - Results will be saved to a temp file
    
    5. **Get results through MCP**
       - After a command is executed, use the \`get-results\` tool
       - This will retrieve the results from After Effects
    
    Available scripts:
    - getProjectInfo: Information about the current project
    - listCompositions: List all compositions in the project
    - getLayerInfo: Information about layers in the active composition
    - createComposition: Create a new composition
    - createTextLayer: Create a new text layer
    - createShapeLayer: Create a new shape layer
    - createSolidLayer: Create a new solid layer
    - setLayerProperties: Set properties for a layer
    - setLayerKeyframe: Set a keyframe for a layer property
    - setLayerExpression: Set an expression for a layer property
    - applyEffect: Apply an effect to a layer
    - applyEffectTemplate: Apply a predefined effect template to a layer
    
    Effect Templates:
    - gaussian-blur: Simple Gaussian blur effect
    - directional-blur: Motion blur in a specific direction
    - color-balance: Adjust hue, lightness, and saturation
    - brightness-contrast: Basic brightness and contrast adjustment
    - curves: Advanced color adjustment using curves
    - glow: Add a glow effect to elements
    - drop-shadow: Add a customizable drop shadow
    - cinematic-look: Combination of effects for a cinematic appearance
    - text-pop: Effects to make text stand out (glow and shadow)
    
    Note: The auto-running panel can be left open in After Effects to continuously listen for commands from external applications.`
            }
          ]
        };
      }
  • src/index.ts:364-428 (registration)
    The registration of the 'get-help' tool via server.tool(), specifying the tool name, description, empty input schema ({}), and the inline handler function.
    server.tool(
      "get-help",
      "Get help on using the After Effects MCP integration",
      {},
      async () => {
        return {
          content: [
            {
              type: "text",
              text: `# After Effects MCP Integration Help
    
    To use this integration with After Effects, follow these steps:
    
     1. **Install the scripts in After Effects**
       - Run \`node install-bridge.js\` with administrator privileges
       - This copies the necessary scripts to your After Effects installation
    
    2. **Open After Effects**
       - Launch Adobe After Effects 
       - Open a project that you want to work with
    
    3. **Open the MCP Bridge Auto panel**
       - In After Effects, go to Window > mcp-bridge-auto.jsx
       - The panel will automatically check for commands every few seconds
    
    4. **Run scripts through MCP**
       - Use the \`run-script\` tool to queue a command
       - The Auto panel will detect and run the command automatically
       - Results will be saved to a temp file
    
    5. **Get results through MCP**
       - After a command is executed, use the \`get-results\` tool
       - This will retrieve the results from After Effects
    
    Available scripts:
    - getProjectInfo: Information about the current project
    - listCompositions: List all compositions in the project
    - getLayerInfo: Information about layers in the active composition
    - createComposition: Create a new composition
    - createTextLayer: Create a new text layer
    - createShapeLayer: Create a new shape layer
    - createSolidLayer: Create a new solid layer
    - setLayerProperties: Set properties for a layer
    - setLayerKeyframe: Set a keyframe for a layer property
    - setLayerExpression: Set an expression for a layer property
    - applyEffect: Apply an effect to a layer
    - applyEffectTemplate: Apply a predefined effect template to a layer
    
    Effect Templates:
    - gaussian-blur: Simple Gaussian blur effect
    - directional-blur: Motion blur in a specific direction
    - color-balance: Adjust hue, lightness, and saturation
    - brightness-contrast: Basic brightness and contrast adjustment
    - curves: Advanced color adjustment using curves
    - glow: Add a glow effect to elements
    - drop-shadow: Add a customizable drop shadow
    - cinematic-look: Combination of effects for a cinematic appearance
    - text-pop: Effects to make text stand out (glow and shadow)
    
    Note: The auto-running panel can be left open in After Effects to continuously listen for commands from external applications.`
            }
          ]
        };
      }
    );
  • The input schema for the 'get-help' tool, which is an empty object indicating no parameters are required.
    {},
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 of behavioral disclosure. It states the tool 'gets help,' which implies a read-only, informational operation, but doesn't specify what form the help takes (e.g., documentation, examples, troubleshooting), whether it requires authentication, or any rate limits. This leaves significant gaps in understanding how the tool behaves beyond its basic purpose.

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, clear sentence: 'Get help on using the After Effects MCP integration.' It is front-loaded with the core purpose, has zero wasted words, and is appropriately sized for a simple tool with no parameters. Every part of the sentence earns its place by conveying essential information efficiently.

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, no annotations), the description is minimally adequate. It states the purpose but lacks details on what the help output includes, how it's formatted, or any behavioral traits. For a help tool, more context on the type of help provided would enhance completeness, but the absence of complex schema elements keeps it from being severely incomplete.

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% description coverage, meaning no parameters need documentation. The description doesn't mention any parameters, which is appropriate given the schema. Since there are no parameters, the baseline score is 4, as the description doesn't need to compensate for missing parameter 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: 'Get help on using the After Effects MCP integration.' It specifies the verb ('Get help') and the resource/topic ('After Effects MCP integration'), making it easy to understand what the tool does. However, it doesn't explicitly distinguish itself from the sibling tool 'mcp_aftereffects_get_effects_help', which might cause confusion about scope differentiation.

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 implies usage context by mentioning 'help on using the After Effects MCP integration,' suggesting it should be used when assistance is needed with the integration. However, it provides no explicit guidance on when to use this tool versus alternatives like 'mcp_aftereffects_get_effects_help' or other sibling tools, nor does it specify prerequisites or exclusions, leaving usage decisions ambiguous.

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

Related 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/Dakkshin/after-effects-mcp'

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