Skip to main content
Glama

boardagent_complete_task

Mark a task as done and restrict completion to the owning agent; requires a write role.

Instructions

Mark a task done. Only the owning agent may complete it. Requires write role.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
agent_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses the authorization model (owning agent only, write role required), but says nothing about the resulting task state, whether completion is reversible, or error behavior on permission failure.

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?

Three short sentences, action first, prerequisites after. No filler and nothing redundant.

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 mutation tool with no annotations, no output schema, and two undocumented parameters, the description covers authorization but omits state-change semantics and parameter meaning. It is minimally adequate but leaves 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% — neither 'id' nor 'agent_id' has any description. The description does not identify what 'id' refers to or whose 'agent_id' is expected (the caller's or the owner's), so it fails to compensate for the coverage gap.

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+resource ('Mark a task done') that is clearly distinct from siblings like claim_task, update_task, and delete_task. It does not explicitly contrast with claim_task, but the action is unambiguous.

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

Usage Guidelines4/5

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

Gives concrete preconditions: only the owning agent may complete it and a write role is required. It states when the call will succeed but does not name alternatives for non-owning agents (e.g., claim or update instead).

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