Skip to main content
Glama

delete_table_row

Remove the active row from a 1C form table to update session-local state. Select the target row first, then verify the change in the same session.

Instructions

Delete the ACTIVE table row natively. Clicks the fixture's PF_DELETE_ROW command (ДанныеФормыКоллекция.Удалить on the active row of PF_TABLE_ITEMS), capture-free, by replaying the genuine PF_COPY_ROW click (its form-open setup) retargeted to the PF_DELETE_ROW Button leaf. Example: baseline [PF_ROW_001|PF_ROW_002|PF_ROW_003], active row 1 -> PF_TABLE_SNAPSHOT=PF_TABLE[2]=PF_ROW_002|PF_ROW_003. The deletion is session-local form state (reset on a fresh form-open), so verify in the SAME session via assert_form_value('PF_TABLE_SNAPSHOT') / ('PF_LAST_ACTION'=='PF_DELETE_ROW') or capture_screenshot. Select the target row first with select_table_row. Returns {base_button, target_button, accepted}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
portNo
captureNogenuine-card97-rowops-combined-20260619/traffic-selfcontained

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/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 key traits: deletion is session-local form state that resets on a fresh form-open, so it must be verified in the same session, and it returns {base_button, target_button, accepted}. It doesn't cover auth/permission requirements or error behavior, but the mutation semantics and state lifetime are unusually well documented.

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?

The action and its mechanism are front-loaded, followed by a worked example, verification guidance, and the return shape. It is dense and peppered with domain-specific fixture/command jargon, but each clause carries real operational information rather than repetition.

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

Completeness5/5

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

For a niche form-automation mutation tool, the description covers the mechanism, the session-scoped state lifetime, how to verify success, and even restates the return object despite an output schema existing. Nothing an agent needs to invoke it correctly is missing.

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 host, port, and capture, and the description never mentions any of them. Even though they are connection/infrastructure params with defaults, the description does not compensate for the complete absence of schema documentation, leaving their semantics entirely to inference.

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?

First sentence gives a specific verb, resource, and scope: "Delete the ACTIVE table row natively." It also names the prerequisite sibling (select_table_row) and contrasts its mechanism against copy_table_row, so an agent can place it precisely among the row-operation siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states the prerequisite ("Select the target row first with select_table_row") and the correct verification path (assert_form_value on PF_TABLE_SNAPSHOT/PF_LAST_ACTION, or capture_screenshot). It gives clear when-to-use context but does not state any when-not-to-use or alternative deletion paths.

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