Skip to main content
Glama
Starbavk
by Starbavk

add_word_table

Adds a table to a Word document by accepting a file path, column headers, and data rows.

Instructions

Add a table to a Word document.

Args: path: Path to the .docx file headers: Column headers rows: Data rows (list of lists)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
rowsYes
headersYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are present, so the description must disclose behavioral traits itself. It states that a table is added, but it does not say whether the document must already exist, where the table is inserted, whether existing content is affected, or what happens on failure. For a mutating tool this is a notable gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is tight and front-loaded: one clear purpose sentence followed by a short Args list. There is no filler or repetition of unrelated details.

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 three-parameter tool, the description names all required inputs and the basic action. Still, with no annotations and no output schema, it leaves practical invocation details unstated, such as whether the .docx file must already exist before calling this tool.

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 coverage is 0%, so the Args block carries the semantic burden. It adds minimal useful meaning: path is a .docx file, headers are column headers, rows are lists of lists. However, it does not explain expected relationships such as header/row length matching or formatting constraints, so it only partially compensates for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and object: 'Add a table to a Word document.' This clearly distinguishes the tool from siblings like add_word_heading, add_word_paragraph, and add_word_list, and there is no ambiguity about the resource being manipulated.

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 gives no guidance on when to use this tool versus alternatives, and it does not mention prerequisites or exclusions. An agent has to infer from the word 'table' that this is the right sibling choice, since no explicit routing or context is provided.

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