Skip to main content
Glama

edit_project_properties

Update the name or origin of an existing O3DE project by specifying its path.

Instructions

Edit properties of an existing O3DE project.

Args: project_path: Path to the project. project_name: New name for the project (optional). origin: New origin URL or description (optional).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
originNo
project_nameNo
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.4/5.0
Behavior2/5

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

There are no annotations, so the description carries the full behavioral burden. It only says 'Edit' and lists arguments; it does not disclose side effects, whether both optional arguments can be omitted, validation behavior, or what files are modified. For a mutating tool, this is insufficient transparency.

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 compact, front-loaded purpose sentence followed by a minimal Args list with no filler. Every line carries useful information and the format is easy to scan.

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?

For a simple tool with three string parameters and an output schema, the description is nearly sufficient: it states the target and defines each parameter. However, it leaves behavioral gaps such as whether at least one optional property must be provided, what happens on invalid paths, and side effects on the project manifest.

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?

Schema description coverage is 0%, so the Args section is the only source of parameter meaning. It clarifies that project_name and origin are optional and explains their roles ('New name', 'New origin URL or description'), adding value beyond the bare schema property titles. It covers all parameters, though tersely.

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 opens with a specific verb and resource ('Edit properties of an existing O3DE project'), clearly indicating the tool's intent and distinguishing it from creation/listing tools. It does not explicitly name or contrast sibling tools, so it falls short of a 5.

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 purpose implies when to use the tool—when project-level metadata such as name or origin needs changing—but there is no explicit guidance about alternatives or when not to use it. Given the large sibling set of project and component tools, this is only implied usage, not directed guidance.

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