Skip to main content
Glama

set_spreadsheet_cell

Set or update cell text in an ELN template's spreadsheet tab using zero-based row and column coordinates.

Instructions

设置 x-spreadsheet 单元格文本(表格搭建 Tab)。行/列从 0 开始。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
colYes列号,从 0
rowYes行号,从 0
textYes单元格文本
styleNo样式索引,默认 1

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the basic action and zero-based indexing, but does not disclose whether existing cell content is overwritten, how the optional 'style' parameter affects the cell, whether formulas are affected, or any side effects. This is a significant gap for a mutation tool.

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 description is a single, efficient sentence that front-loads the purpose and the zero-index convention. It wastes no words and is appropriately sized for a tool this simple.

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?

For a simple 'set' operation with an output schema absent and no annotations, the description is mostly adequate but leaves gaps. It does not explain the effect of the 'style' parameter (only the schema lists it), nor does it indicate return behavior or potential overwrites. These omissions could lead to incorrect usage, though the core required parameters (row, col, text) are clearly covered by the schema.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents 'row', 'col', 'text', and 'style'. The description adds the zero-index note, which is already present in the schema parameter descriptions. It adds no additional meaning about parameter usage, values, or format. Baseline 3 applies because the schema handles parameter semantics sufficiently.

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 clearly states the action (设置 = 'set') and the resource ('x-spreadsheet 单元格文本' = 'x-spreadsheet cell text'), and it distinguishes itself by specifying the tab context ('表格搭建 Tab'). While it doesn't explicitly differentiate from sibling tools, the name and verb make the purpose unambiguous.

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. It does not mention any exclusions, prerequisites, or conditions. The intended usage is only implied by the function name and purpose, with no direction on when not to use it or what other tools might be more appropriate.

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