table_delete_row
Delete the active row from a 1C form table to remove unwanted entries during UI testing.
Instructions
Delete the current row in a form table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| title | No | ||
| session_id | No | default-18 |
Delete the active row from a 1C form table to remove unwanted entries during UI testing.
Delete the current row in a form table.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| title | No | ||
| session_id | No | default-18 |
Changes observed during successful MCP inspections.
v0.5.3Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description alone must disclose behavioral traits. It fails to mention that deletion is destructive, permanent, or dependent on the table's current row state. It also does not state what happens if no row is current or whether confirmation is required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no fluff, which is structurally efficient. However, it is overly terse given the tool's complexity, omitting essential information, so it does not strike the right balance between conciseness and completeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has three parameters, no output schema, and no annotations, yet the description explains none of these aspects. It is grossly incomplete, leaving an agent without the necessary context to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for its three parameters (name, title, session_id), and the tool description provides no explanation of their purpose or expected values. An agent has no clue what to pass, making the tool effectively uncallable correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('Delete') and a specific resource ('the current row in a form table'), distinguishing it from sibling tools like table_add_row or table_copy_row. It unambiguously conveys the tool's core function without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as table_toggle_delete_mark or table_clear_selection. There is no mention of prerequisites, exclusions, or context where deletion is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.