Skip to main content
Glama
23d1
by 23d1

Find available effects

ae_search_effects
Read-only

Search installed After Effects effects by name or category to find exact matchNames. Verify an effect exists before applying it to avoid errors.

Instructions

Search the effects installed in this copy of After Effects and get their exact matchNames. Use this before ae_apply_effect when you aren't sure an effect exists or how it's spelled.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results. Default: 60.
queryNoCase-insensitive substring of the effect or category name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the agent knows this is a safe read operation. The description adds that it returns exact matchNames, which is useful, but it doesn't disclose details like case-insensitivity of the query or default limit behavior. With annotations covering the safety profile, a 3 is appropriate.

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?

Two sentences with zero waste. The purpose is front-loaded, and the usage guidance is concise. Every sentence earns its place.

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

Completeness4/5

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

For a read-only search tool with 100% schema coverage and no output schema, the description is nearly complete. It could mention that the output is a list of matchNames, but the description already says 'get their exact matchNames.' The only minor gap is not describing the output format, but that's not required given the tool's simplicity.

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%, so the schema already documents both parameters (limit and query). The description adds the context that the query is a case-insensitive substring and that results are matchNames, but it doesn't add significant meaning beyond the schema. Baseline 3 is correct.

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

Purpose5/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: searching installed After Effects effects and retrieving their exact matchNames. It also explicitly names the sibling tool ae_apply_effect, distinguishing this search tool from the application tool.

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

Usage Guidelines5/5

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

The description explicitly says to use this tool before ae_apply_effect when unsure an effect exists or how it's spelled. This provides clear when-to-use guidance and names the alternative, leaving no ambiguity.

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