Skip to main content
Glama

read_spreadsheet_cell

Retrieve a spreadsheet cell value by R1C1 address from a live 1C managed form, returning field, address, and value without binary decoding.

Instructions

Read a spreadsheet (ТабличныйДокумент) CELL by address natively. Reading a cell is an IN-CLIENT method on the live object, NOT a binary .mxl wire-decode: the manager NEVER receives the cell text in the binary form-render (only a 20-byte handle); a TARGETED read («перейти к ячейке ») makes the client evaluate the cell and return its value as a small PLAIN string. Replays the genuine flow (open form -> run the report -> navigate to the cell) re-targeting the address (R1C1 notation, ANY length — the navigate frame resizes) and parses the value from the client response with the value-read path (the cell value rides the SAME 0x9a<len><utf-8> shape). Live-verified across address lengths (R1C1->PF_RPT_R1C1, R1C12->PF_RPT_R1C12, R12C12->PF_RPT_R12C12). Returns {field, address, value}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
portNo
fieldNoPF_REPORT
addressNoR1C1
captureNocellread
captured_addressNoR1C1

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.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 meaningful behavior: the manager never sees cell text in binary render, a targeted read re-evaluates the cell, and the flow opens a form and runs a report before navigating. It also names the return shape, though it omits permissions or re-entrancy concerns.

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, jargon-heavy and mixes English with Cyrillic, making it harder for an agent to parse quickly. Several clauses (wire-decode details, byte-shape `0x9a<len>`) expand without changing the calling decision.

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

Completeness3/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 detailed (though they are). For a tool with deep internal protocol nuance and zero annotation coverage, the definition covers mechanism well but leaves the majority of parameters unexplained, leaving gaps an agent must guess at.

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 coverage is 0% and only the `address` parameter is meaningfully explained (R1C1 notation, arbitrary length, navigate frame resizes). The other five parameters — host, port, field, capture, captured_address — are undocumented in both the schema and the description, so the compensation is only partial.

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 ('Read a spreadsheet CELL by address natively') and contrasts it with the binary .mxl wire-decode approach, which clarifies what the tool is not. It does not, however, distinguish itself from close siblings like read_table_cell or read_record.

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 explains the internal mechanism (targeted in-client read, replayed form/report flow) but never states when to pick this tool over read_table_cell, read_list_row, or read_record. There is no when-to-use, when-not-to-use, or alternative routing guidance.

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