Skip to main content
Glama

enable_gem

Activate an O3DE gem by specifying its name and project path, making its features available in your project.

Instructions

Enable a gem in an O3DE project.

Args: gem_name: Name of the gem to enable. project_path: Path to the project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gem_nameYes
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states the action 'Enable a gem' but does not disclose that enabling likely mutates project configuration, whether it overwrites an existing enabled state, how it handles a missing gem, or what happens on failure. It is minimally transparent but omits important behavioral context for a mutating operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short and front-loaded with the main purpose, followed by a compact argument list. There is no unnecessary prose. The Args section somewhat duplicates the schema property titles, but the whole definition is easy to scan and quickly parse. It could be slightly more informative without losing conciseness.

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 tool with no annotations, two undocumented parameters, and no behavioral details, the description is not complete enough to ensure correct invocation. It does not state prerequisites, side effects, error behavior, or when to choose this tool over related gem-management tools. An output schema exists and may cover return values, but nothing in the description explains the operational context, so an agent is left guessing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must clarify the parameters. It provides 'gem_name: Name of the gem to enable' and 'project_path: Path to the project,' which add only slight meaning beyond the parameter names and schema titles. It does not explain expected path format, whether paths should be absolute, how gem names are resolved, or any constraints on the values.

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 states a specific action and object: 'Enable a gem in an O3DE project.' This is a clear verb+resource pair and is easy to distinguish from sibling tools like disable_gem, register_gem, or create_gem by name and behavior. However, it does not explicitly explain how 'enable' differs from 'register' or mention that this modifies the project's gem configuration.

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 such as register_gem, create_gem, list_gems, or disable_gem. There are no prerequisites stated, such as whether the gem must already be registered, whether the project path must exist, or whether enable_gem should be called before other gem operations. The usage context is left entirely to inference.

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