Skip to main content
Glama
asisrasyid

SheetMaster Todo MCP

by asisrasyid

update_subtask

Modify a subtask's title or completion status within a SheetMaster Todo board.

Instructions

Update a subtask title or completion state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
subTaskIdYes
isCompletedNo

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?

With no annotations, the description must carry the full burden of behavioral disclosure. It only mentions which fields can be updated, but does not disclose whether updates are partial, how validation behaves, whether permissions are required, or what the response looks like. For a mutation tool, this is insufficient.

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 a single, efficient sentence with no filler. The core action and scope are front-loaded, and every word earns its place.

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 3-parameter mutation tool with no output schema and no annotations, this description is too sparse. It omits essential context such as the requirement for subTaskId, whether partial updates are allowed, and any return value or error behavior. An agent would need to infer too much.

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%, so the description should compensate. It mentions 'title' and 'completion state' which map to the title and isCompleted properties, but it does not explain that subTaskId is required, that the other fields are optional, or that both can be updated together. The schema already lists the parameters, so the description adds minimal meaning.

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 states a clear verb ('Update') and resource ('subtask'), and specifies exactly what can be changed ('title or completion state'). This distinguishes it from create_subtask and delete_subtask, as well as update_task, since it targets subtasks specifically.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or alternative guidance is provided. However, the tool name and sibling list make it clear this is the dedicated tool for updating subtasks, so usage is implied rather than stated.

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