Skip to main content
Glama

get_asset_processor_status

Check whether the O3DE Asset Processor is running for a project. Get a clear status to confirm if asset processing is active or stopped.

Instructions

Check whether the O3DE Asset Processor is running.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_pathNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It clearly presents the operation as a non-mutating status query, which is useful, but it does not mention potential side effects, prerequisites, or how project_path affects the check.

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?

A single sentence with no filler; the key subject and action are front-loaded. Every word contributes to meaning.

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 status-check tool with an output schema, the description is mostly adequate, but it is incomplete around parameter semantics and when this tool should be preferred over related asset-processing siblings. The missing usage and parameter guidance prevent it from being fully self-contained.

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?

The description does not explain the optional project_path parameter at all, despite schema description coverage being 0%. The parameter name in the schema offers only a minimal hint; the description should clarify whether it selects a specific project or is ignored.

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 specifies a clear verb ('Check') and a concrete resource ('O3DE Asset Processor'), making the tool's purpose immediately obvious. This sets it apart from related siblings like wait_for_assets or refresh_assets, which imply different operations.

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?

No guidance is given about when to check status versus using alternatives such as wait_for_assets or refresh_assets. The description only states what the tool does, leaving the agent to infer when it should be invoked.

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