Skip to main content
Glama

Renforge List Ui Elements

renforge_list_ui_elements

Lists visible focusable Ren'Py UI controls with their bounds and frame guard, helping AI agents inspect interactable elements in a running game.

Instructions

List visible focusable Ren'Py controls with bounds and frame guard.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNo
screenNo
element_typeNo
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

C2.9/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose filtering behavior (only visible, focusable controls) and return content (bounds). However, 'frame guard' is unexplained jargon, and it never says whether this is a read-only operation or whether a running game/session is required.

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?

A single front-loaded sentence with no wasted words, leading with the verb and resource. The terse phrasing slightly hurts comprehension because 'frame guard' is never defined.

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?

An output schema exists so return values need not be explained, but four parameters with 0% schema coverage and no annotations leave the filtering semantics and prerequisites (e.g. whether the project must be running) undocumented. The description is too thin for a tool with this much structured-data silence.

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 schema documents nothing about text, screen, element_type, or project_path, and the description offers no compensating explanation of their meaning or format. The phrase 'visible focusable' only loosely hints at the element_type filter.

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?

States a concrete verb ('List') and resource ('Ren'Py controls') with a scope qualifier ('visible focusable') and names what is returned ('bounds and frame guard'). This separates it from siblings like renforge_click_element or renforge_scene_tree, though it never names an alternative directly.

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?

There is no explicit when-to-use or when-not-to-use guidance and no mention of the sibling tools (renforge_scene_tree, renforge_get_ui_element_bounds, renforge_click_element) that overlap in purpose. Usage is only implied by 'visible focusable'.

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