Skip to main content
Glama

complete_tasks

Mark specified task IDs as completed for a given date, updating task status and the daily log.

Instructions

Mark tasks as completed for a specific date. Updates daily log and task status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate in YYYY-MM-DD formattoday
task_idsYesTask IDs to mark as completed

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

No annotations, so the description carries the full burden. It discloses two side effects: 'Updates daily log and task status.' This is useful context beyond the name, but it lacks information on idempotency, error handling, or whether marking completed is reversible (likely via update_task).

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?

Two short sentences, front-loaded with the core action followed by secondary effects. No filler, though could be slightly more explicit about the update scope.

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?

Given no annotations, no output schema, and simple parameters, the description covers the primary behavior and mentions daily log updates. However, it omits bulk-handling semantics, error behavior, and potential impact on other tools, leaving some gaps for a write operation.

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 'date' and 'task_ids' fully. The description adds no parameter-level detail beyond what the schema provides; baseline 3 is appropriate.

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 states a clear verb+resource: 'Mark tasks as completed' – an agent knows immediately this is a write operation on task status. It does not explicitly differentiate from the sibling update_task, but the specificity of the action (completing) is a strong signal.

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 when-to-use guidance, no alternatives mentioned. The agent has no indication of when to prefer complete_tasks over update_task or delete_task, especially for bulk versus single-item operations.

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