Skip to main content
Glama

table_editing_state

Determine whether a form table is currently in edit mode, enabling UI automation to decide when to save or discard changes.

Instructions

Return whether a form table is currently in edit mode.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
titleNo
session_idNodefault-18

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

C2.6/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. 'Return whether' implies a non-mutating read, which is helpful, but the description doesn't disclose the return format, behavior when no table matches, or whether the tool requires an active table context.

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 definition is a single, front-loaded sentence with no wasted words. It loses a point because the brevity comes at the cost of any parameter or usage context, so it reads as under-specified rather than optimally concise.

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?

The operation itself is simple, but with no output schema, no annotations, and three undocumented parameters at 0% coverage, the description is not sufficient for an agent to confidently invoke the tool with the correct arguments or interpret the result.

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

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description names none of the three parameters (name, title, session_id). An agent has no way to know which parameter identifies the table or how title/session_id affect the query.

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 description uses a specific verb ('Return whether') and a clear resource ('form table is currently in edit mode'). It communicates a state-query operation and is distinguishable from editing tools like table_begin_edit/table_end_edit, though it doesn't explicitly name them.

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?

The description provides no guidance on when to use this tool versus alternatives, and no exclusions or prerequisites. An agent can infer it's a read-only state check, but not how it relates to table_edit_info or table_begin_edit/table_end_edit.

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

Deploy Server

Other Tools