Skip to main content
Glama

sc_get_status

Retrieve the source control status and revision for a single asset or file path, returning a clear state value even when the provider is unavailable or the file is not in the depot.

Instructions

Get the source control status of a single asset or file path.

Never raises when the provider is unavailable; returns state='unknown' or state='not_in_depot' as appropriate.

Args: path: Package path ('/Game/Blueprints/BP_HealthSystem') or absolute filesystem path to the .uasset file.

Returns: JSON StructuredResult with outputs: path — the queried path state — 'checked_out' | 'added' | 'unchanged' | 'deleted' | 'conflicted' | 'not_in_depot' | 'ignored' | 'unknown' revision — revision string (e.g. '#12') or '' if unavailable

KB: see knowledge_base/32_AGENT_PLAYABLE_SLICE_RECIPE.md#overview Example: sc_get_status(path="/Game/MCP_Test/Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description fully carries the behavioral burden. It discloses that it never raises when the provider is unavailable and returns specific states ('unknown', 'not_in_depot'), which is valuable. It also documents the return structure, but does not mention permissions or side effects (though it is a read 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 well-structured with sections (Args, Returns, KB, Example) and front-loads the purpose. It is slightly longer than necessary but every part adds value, including the behavioral note and example. No filler.

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

Completeness5/5

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

Despite having an output schema (per signals), the description also explains the return fields, making it self-contained. The example and KB reference add context. For a low-complexity tool with one parameter, it is complete enough for an agent to invoke correctly.

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

Parameters5/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 fully explain the single parameter. It does: 'path' is described as a package path or absolute filesystem path with an example. This fully compensates for the schema's lack of detail.

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 states a clear verb 'Get' and a specific resource 'source control status of a single asset or file path', with precise path types (package or absolute filesystem). It distinguishes itself from siblings by focusing on a single asset status, which is clear even without naming alternatives.

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 description implies usage for checking status but does not explicitly contrast with sibling tools like sc_get_provider_info or sc_get_changelist. It lacks when-to-use vs when-not-to-use guidance, though the example provides a concrete scenario.

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

Deploy Server

Other Tools