Skip to main content
Glama

study_task_update

Track your study task progress by setting status to todo, doing, done, or archived, adding notes and time estimates. Marking a task done records local completion but does not submit work to Learn.

Instructions

Update or reversibly archive a local task. 'done' never means submitted to Learn.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNo
statusNo
task_idYes
estimate_minutesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed11 schema fields changedv0.5.0
    • removedInput schema / properties / estimate_minutes / anyOf
      Removed value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / estimate_minutes / oneOf
      Added value: +[
      +  {
      +    "type": "integer"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedInput schema / properties / estimate_minutes / title
      Removed value: -"Estimate Minutes"
    • removedInput schema / properties / notes / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / notes / oneOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedInput schema / properties / notes / title
      Removed value: -"Notes"
    • removedInput schema / properties / status / anyOf
      Removed value: -[
      -  {
      -    "enum": [
      -      "todo",
      -      "doing",
      -      "done",
      -      "archived"
      -    ],
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / status / oneOf
      Added value: +[
      +  {
      +    "enum": [
      +      "todo",
      +      "doing",
      +      "done",
      +      "archived"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedInput schema / properties / status / title
      Removed value: -"Status"
    • removedInput schema / properties / task_id / title
      Removed value: -"Task Id"
    • removedInput schema / title
      Removed value: -"study_task_updateArguments"
  2. First observedv0.4.0

TDQS

A3.5/5.0
Behavior4/5

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

The description adds two facts beyond the annotations: archiving is reversible (consistent with destructiveHint=false) and that 'done' does not mean the task was submitted to Learn, which disambiguates status semantics. It does not cover partial-update behavior, permission needs, or what an update returns.

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?

Two short, front-loaded sentences with no filler. The behavioral caveat about 'done' is placed immediately after the core action, so nothing is buried.

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 four-parameter mutation tool with no output schema and no annotations covering returns, the description is thin. It never explains that omitted fields are presumably left unchanged, what reverting an archive entails, or how notes and estimate interact with updates.

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 description coverage is 0% across four parameters, so the description must compensate but largely does not. It only hints at the meaning of the status value 'done'; notes, estimate_minutes, and the other status values (todo/doing/archived) remain unexplained.

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?

State a specific verb (update/archive) and resource (a local task), and explicitly scopes it to 'local' tasks rather than anything synced to Learn. This distinguishes it reasonably well from study_task_create and study_tasks, though no sibling is named directly.

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?

The word 'Update' implies it acts on an existing task rather than creating one, and the 'done' caveat warns about a misuse case. However, there is no explicit when-to-use guidance, no pointer to sibling tools such as study_task_create for new tasks, and no stated prerequisites for updating.

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