Skip to main content
Glama

Renforge Advance

renforge_advance

Advance the current dialogue in a running Ren'Py project by passing its project path, so AI agents can step through game scenes.

Instructions

Advance the current dialogue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure, and it discloses almost nothing: it does not say whether the game must be running, whether this mutates saved state, whether it blocks/waits, or what happens when no dialogue is active. Only the bare claim that it acts on the current dialogue is offered.

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

Conciseness3/5

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

The one-sentence description is maximally concise and contains no filler, which is appropriate. But the brevity comes at the cost of under-specification rather than tightness, so it sits at minimum-viable rather than being a model of economical writing.

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 for a state-mutating dialogue tool with one undocumented required parameter and no annotations, key context is missing: prerequisites (launched game, active dialogue), side effects, and failure modes. The definition is too thin to call it safely.

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 single parameter project_path has 0% schema description coverage and the description says nothing about it — no path format, whether it is relative or absolute, or whether it must point at an already-launched project. The description therefore fails to compensate for the coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a verb (advance) and a resource (current dialogue), so the basic action is identifiable. However, 'advance' is ambiguous for a Ren'Py-style toolset — it could mean step one line, skip, or move to the next dialogue node — and no sibling (e.g. renforge_select_choice, renforge_jump) is named to disambiguate.

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 statement of when to use this versus alternatives such as renforge_select_choice for branches, renforge_list_choices for enumerating options, or renforge_jump for moving elsewhere. The 'current dialogue' phrasing weakly implies a dialogue must be active, but no explicit condition or exclusion is given.

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