Skip to main content
Glama

mcp_aftereffects_get_effects_help

Retrieve guidance and support for applying and managing effects in Adobe After Effects using the MCP protocol.

Instructions

Get help on using After Effects effects

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:870-952 (registration)
    Registers the 'mcp_aftereffects_get_effects_help' MCP tool with an empty input schema and an inline handler function that returns markdown-formatted help text listing common After Effects effect match names, available templates, and usage examples.
    server.tool(
      "mcp_aftereffects_get_effects_help",
      "Get help on using After Effects effects",
      {},
      async () => {
        return {
          content: [
            {
              type: "text",
              text: `# After Effects Effects Help
    
    ## Common Effect Match Names
    These are internal names used by After Effects that can be used with the \`effectMatchName\` parameter:
    
    ### Blur & Sharpen
    - Gaussian Blur: "ADBE Gaussian Blur 2"
    - Camera Lens Blur: "ADBE Camera Lens Blur"
    - Directional Blur: "ADBE Directional Blur"
    - Radial Blur: "ADBE Radial Blur"
    - Smart Blur: "ADBE Smart Blur"
    - Unsharp Mask: "ADBE Unsharp Mask"
    
    ### Color Correction
    - Brightness & Contrast: "ADBE Brightness & Contrast 2"
    - Color Balance: "ADBE Color Balance (HLS)"
    - Color Balance (RGB): "ADBE Pro Levels2"
    - Curves: "ADBE CurvesCustom"
    - Exposure: "ADBE Exposure2"
    - Hue/Saturation: "ADBE HUE SATURATION"
    - Levels: "ADBE Pro Levels2"
    - Vibrance: "ADBE Vibrance"
    
    ### Stylistic
    - Glow: "ADBE Glow"
    - Drop Shadow: "ADBE Drop Shadow"
    - Bevel Alpha: "ADBE Bevel Alpha"
    - Noise: "ADBE Noise"
    - Fractal Noise: "ADBE Fractal Noise"
    - CC Particle World: "CC Particle World"
    - CC Light Sweep: "CC Light Sweep"
    
    ## Effect Templates
    The following predefined effect templates are available:
    
    - \`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)
    
    ## Example Usage
    To apply a Gaussian blur effect:
    
    \`\`\`json
    {
      "compIndex": 1,
      "layerIndex": 1,
      "effectMatchName": "ADBE Gaussian Blur 2",
      "effectSettings": {
        "Blurriness": 25
      }
    }
    \`\`\`
    
    To apply the "cinematic-look" template:
    
    \`\`\`json
    {
      "compIndex": 1,
      "layerIndex": 1,
      "templateName": "cinematic-look"
    }
    \`\`\`
    `
            }
          ]
        };
      }
    );
  • The inline handler function for the tool, which returns a static text content block providing detailed help on After Effects effects including match names by category, predefined templates, and JSON usage examples.
      async () => {
        return {
          content: [
            {
              type: "text",
              text: `# After Effects Effects Help
    
    ## Common Effect Match Names
    These are internal names used by After Effects that can be used with the \`effectMatchName\` parameter:
    
    ### Blur & Sharpen
    - Gaussian Blur: "ADBE Gaussian Blur 2"
    - Camera Lens Blur: "ADBE Camera Lens Blur"
    - Directional Blur: "ADBE Directional Blur"
    - Radial Blur: "ADBE Radial Blur"
    - Smart Blur: "ADBE Smart Blur"
    - Unsharp Mask: "ADBE Unsharp Mask"
    
    ### Color Correction
    - Brightness & Contrast: "ADBE Brightness & Contrast 2"
    - Color Balance: "ADBE Color Balance (HLS)"
    - Color Balance (RGB): "ADBE Pro Levels2"
    - Curves: "ADBE CurvesCustom"
    - Exposure: "ADBE Exposure2"
    - Hue/Saturation: "ADBE HUE SATURATION"
    - Levels: "ADBE Pro Levels2"
    - Vibrance: "ADBE Vibrance"
    
    ### Stylistic
    - Glow: "ADBE Glow"
    - Drop Shadow: "ADBE Drop Shadow"
    - Bevel Alpha: "ADBE Bevel Alpha"
    - Noise: "ADBE Noise"
    - Fractal Noise: "ADBE Fractal Noise"
    - CC Particle World: "CC Particle World"
    - CC Light Sweep: "CC Light Sweep"
    
    ## Effect Templates
    The following predefined effect templates are available:
    
    - \`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)
    
    ## Example Usage
    To apply a Gaussian blur effect:
    
    \`\`\`json
    {
      "compIndex": 1,
      "layerIndex": 1,
      "effectMatchName": "ADBE Gaussian Blur 2",
      "effectSettings": {
        "Blurriness": 25
      }
    }
    \`\`\`
    
    To apply the "cinematic-look" template:
    
    \`\`\`json
    {
      "compIndex": 1,
      "layerIndex": 1,
      "templateName": "cinematic-look"
    }
    \`\`\`
    `
            }
          ]
        };
      }
  • Empty input schema indicating the tool takes no parameters.
    {},
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 'Get help' but doesn't specify what kind of help is provided (e.g., documentation, examples, troubleshooting), how it's delivered (e.g., text, links), or any constraints like rate limits or authentication needs. This leaves significant gaps in understanding the tool's behavior.

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: 'Get help on using After Effects effects.' It's front-loaded with the core purpose, has zero wasted words, and is appropriately sized for the tool's simplicity. Every word earns its place.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the help output looks like (e.g., text, structured data), potential errors, or usage context. For a tool that might return complex help information, more detail is needed to guide the agent effectively.

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 doesn't add parameter details, which is appropriate given the lack of parameters. Baseline 4 is assigned as it meets expectations for a tool with no parameters.

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 After Effects effects.' It specifies the verb ('Get help') and resource ('After Effects effects'), making it understandable. However, it doesn't differentiate from the sibling tool 'get-help', which could cause confusion about scope or specificity.

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 doesn't mention the sibling tool 'get-help' or clarify if this is for effects-specific help versus general help. There's no context on prerequisites or exclusions, leaving usage 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