Skip to main content
Glama

search_list

Filters a dynamic 1C list by entering a search string into its search field, optionally refreshing first so new records appear. Use to narrow visible rows; confirm via screenshot.

Instructions

Filter a dynamic list by a SEARCH STRING natively. Types value into a dynamic list's search-string addition (search_field); the list filters incrementally (searchOnInput). A dynlist search rides the SAME UTF-16 value-SET buffer as a reference-name input (e0 41 81 81 b7 <char-count><utf-16le><space pad>) addressed at the SearchStringAddition element, so it composes from the same full-replay machinery as set_reference_field: open the form (replay the genuine setup from capture, which typed captured_value into the search box) -> activate the dynlist -> SET the search string, re-targeting the UTF-16 string to value (fixed-width, bounded by the captured length). A list-filter has no clean value read-back — confirm with capture_screenshot (the visible rows narrow); echoed reports the search value echoed in the client responses. CURRENCY: refresh=True (default) forces an «Обновить»/F5 requery first so the search runs against a current list (a just-created record is filterable); refresh=False opts out. A search reports no row count, so this is refresh-only (no poll-until-stable); list_refresh records the refresh method. Returns {search_field, value, echoed, list_refresh}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
portNo
valueYes
captureNosearch
refreshNo
search_fieldNoДенамическийСписокИерархияСтрокаПоиска
captured_valueNoМолоко

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/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 substantial work: it states incremental filtering via searchOnInput, that there is no clean value read-back, that a search reports no row count so it is refresh-only with no poll-until-stable, and that list_refresh records the refresh method. This is rich behavioral disclosure beyond the schema. It stops short of 5 only because it never addresses auth/permission or failure-mode 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 description is front-loaded with the core action, and headings (CURRENCY, Returns) aid scanning. But it is heavily padded with low-value implementation detail — hex byte layout ('e0 41 81 81 b7 <char-count><utf-16le><space pad>') and buffer-machinery narration — that does not help an agent select or invoke the tool. Several sentences do not earn their place for the invocation decision.

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?

An output schema exists, so return values need not be spelled out, yet the description still lists the response keys. Combined with the refresh semantics, read-back limitation, and near-complete parameter coverage, an agent has enough to call this correctly. It is close to complete for a no-annotation mutation-ish tool, lacking only explicit auth/prerequisite context.

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

Parameters4/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 it largely does: it explains value (the search string), search_field (the SearchStringAddition element), capture (the genuine setup replay that typed captured_value), captured_value (the seed typed into the search box), and refresh (force requery vs opt out). Only host/port are left unaddressed, but those are obvious connection defaults, so the behavioral meaning of the search-relevant parameters is covered.

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?

The first sentence states a specific verb+resource+scope: 'Filter a dynamic list by a SEARCH STRING natively,' then clarifies it types into the search-string addition and filters incrementally. It even contrasts itself against the shared machinery of set_reference_field, so an agent can distinguish it from that sibling. It does not, however, explicitly compare against the other search-like sibling (advanced_search), so it falls short of a 5.

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 context is present but implied: the CURRENCY section explains when refresh defaults on/off and why, and it notes that confirmation must be done via capture_screenshot. However, there is no explicit 'use this instead of advanced_search/choose_from_list when...' routing, and no prerequisites section. Adequate but leaves the alternative-selection decision to inference.

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