Skip to main content
Glama

run_step

Execute a single native read step to capture active window, form summary, or element data for 1C TestClient QA automation.

Instructions

Run a single read step (read_active_window / read_form_summary / read_element) natively.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
kindYes
portNo
markerNo
capture_dirNotm-v1-ro-batchQ3
expect_containsNo
manager_templatesNo/app/src/qa_mcp/_bundled/8.3/templates/manager_frame_templates.json

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/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, and 'read step' only implicitly signals a non-mutating operation. It says nothing about the host/port connection requirement, what capture_dir or expect_contains actually do, or how failures surface, which is a real gap for a tool with connection parameters.

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 filler, and the enumerable kinds are placed where the agent will read them first. It is efficient, though its brevity is partly under-specification rather than discipline.

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 described. However, for a 7-parameter tool with no annotations and 0% schema coverage, the description leaves connection setup, marker/capture semantics, and error behavior undocumented, which is inadequate.

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% across 7 parameters, so the description must compensate and largely does not. It clarifies the 'kind' enum values but leaves host, port, marker, capture_dir, expect_contains, and manager_templates entirely unexplained in both schema and description.

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 specific verb (Run) and resource (a single read step) and enumerates the three valid step kinds, which lets an agent map the required 'kind' parameter. It stops short of distinguishing this tool from siblings like run_scenario or run_write_scenario_tool, and 'natively' is unexplained jargon.

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 on when to choose this over run_scenario, run_write_scenario_tool, or search_for_steps, all of which appear related. The agent is left to infer that this executes one step in isolation, but nothing states that condition or any prerequisite.

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