Skip to main content
Glama

init_array_table

Create an auto-incrementing table skeleton with index/action columns and an add button, using column field paths like tableName.colName.fieldName.

Instructions

创建自增表格骨架(含序号/操作列、添加按钮)。列内字段路径形如 tableName.colName.fieldName。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes表格标识
titleYes表格标题
columnsYes
parentPathNo父路径,如 card1

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 bears the full burden of disclosing behavioral traits. It states the creation of a skeleton and the path format, but does not disclose whether the operation overwrites existing data, whether it is idempotent, any side effects, or required prerequisites. For a mutation tool, this is a notable deficiency.

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 concise sentence that front-loads the core purpose ('创建自增表格骨架') and then adds a semantic detail about field paths. There is no redundancy or filler; it is well-structured and easy to parse.

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?

For a tool that creates a table skeleton with multiple parameters and no output schema, the description lacks essential contextual details. It does not explain what happens on success (e.g., return value), whether it overwrites an existing table, or how it interacts with other table configuration tools. The given information is insufficient for an agent to call it correctly without risk of unintended consequences.

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 75%, meaning most parameters are already described. The description adds the field path convention 'tableName.colName.fieldName', which provides meaning not present in the schema's individual field descriptions. However, it does not elaborate on parameters like name, title, or parentPath beyond what the schema already conveys, so the added value is limited.

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 tool creates an auto-increment table skeleton with sequence/operation columns and an add button. It differentiates itself from sibling tools like init_form_table or init_array_fix_table through the explicit 'array table' focus and the auto-increment aspect. The verb-resource combination is specific and 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?

No guidance is given on when to use this tool versus alternatives such as init_form_table or init_array_fix_table. The description does not mention conditions, exclusions, or the context that would make this the preferred choice. This is a significant gap given the presence of several similar table-related tools in the sibling list.

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