Skip to main content
Glama

set_list_view

Switch a dynamic list's view mode natively by clicking a form button to regroup rows as flat, tree, or hierarchical, then verify the change with a screenshot.

Instructions

Switch a dynamic list's VIEW MODE / grouping natively — the «Режим просмотра» toggle. mode is Список (flat) / Дерево (tree) / Иерархический (hierarchy) — also list/tree/hierarchical. The «Режим просмотра» entries are standard FORM BUTTONS (<dynlist>Список / …Дерево / …ИерархическийСписок); clicking one is the …Button[<name>] 88 82 81 20 20 20 command family (the same invoke as the row ops / close-window) with the Button leaf encoded UTF-16LE (Cyrillic name — so this also exercises the UTF-16-aware command-click path that generalizes click_command to real configs). Replays the genuine click from capture (which clicked Список + ИерархическийСписок), re-targeting the Button leaf (Дерево = same-char-length UTF-16 retarget of Список; Список / Иерархический = verbatim). No value read-back — the list REPRESENTATION changes (verify with capture_screenshot). Returns {mode, button, accepted}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
modeYes
portNo
captureNoviewmode
dynlistNoДенамическийСписокИерархия

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does disclose meaningful behavior: no value read-back, the representation (not the value) changes, and verification should be done with capture_screenshot. It also outlines the command-family mechanism. Missing only failure/permission behavior.

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 purpose is front-loaded, but the body is dense with low-level internals (UTF-16LE Button-leaf encoding, hex command families) that crowd out agent-facing guidance. Much of it is context an agent may not need to select or invoke the tool.

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 high-complexity COM/1C automation tool, the description covers purpose, mechanics, and verification path, and names the return fields. An output schema exists, so return-value explanation is redundant but harmless. It is nearly complete for correct invocation.

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 0% across 5 params, so the description must compensate. It explains mode well (Список/Дерево/Иерархический plus list/tree/hierarchical aliases) and gives some meaning to capture and dynlist, but leaves host and port unexplained.

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 and resource: 'Switch a dynamic list's VIEW MODE / grouping natively.' The scope (the «Режим просмотра» toggle) is clear. It lacks clean sibling differentiation, instead leaning on implementation references (click_command) rather than routing to 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?

Usage is implied by the purpose and the note that it re-targets a captured click. There is no explicit when-to-use/when-not guidance and no route to alternatives, though it hints at its relationship to click_command and row ops.

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