Skip to main content
Glama

Advance one bar without orders

step_run

Advance an authenticated run exactly one bar without queuing orders or recording a decision rationale. This is the single-bar no-order primitive used beneath the bounded waiting tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoBars to advance. Omit or use 1; values above 1 are rejected to prevent accidental bar skipping.
run_idYesRun UUID returned by start_run.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • changedInput schema / properties / count / description
      Previous value: -"Bars to advance. Use 1 for the normal loop. Values above 1 are rejected in MCP to prevent accidental bar-skipping."New value: +"Bars to advance. Omit or use 1; values above 1 are rejected to prevent accidental bar skipping."
    • changedInput schema / properties / run_id / description
      Previous value: -"Run UUID."New value: +"Run UUID returned by start_run."
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

The description discloses key behaviors: no orders, no decision rationale, restriction to exactly one bar (count>1 rejected), and requirement of an authenticated run. This adds value beyond annotations (readOnlyHint=false, destructiveHint=false) by clarifying the precise side effects and constraints.

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?

Two sentences deliver the core purpose and one behavioral note. Every word is essential; no redundancy or fluff.

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

Completeness4/5

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

For a simple tool with two parameters and no output schema, the description covers the main action, constraints, and typical use. It lacks explicit mention of error conditions or prerequisites beyond 'authenticated run', but these are minor omissions.

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

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline applies. The description slightly adds by explaining that count >1 is rejected (already implied by min=1 in schema) and specifies run_id as coming from start_run. These are minor additions, not significantly enhancing what the schema already provides.

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 clearly states the tool's action: advancing a run exactly one bar without queuing orders or recording a decision rationale. It also specifies its role as a primitive beneath bounded waiting tools, which distinguishes it from siblings like advance_until_next_session.

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 provides context that the tool is a low-level primitive used by bounded waiting tools, but it does not explicitly state when to use step_run versus alternatives like advance_until_next_session or hold_until_end.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.