Skip to main content
Glama

Update Tasks

update_tasks
Idempotent

Change tasks: date (moves the day), priority, title, estimate, done, time slot.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tasksYesChanges to apply, one entry per task

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed9 schema fields changed
    • changedInput schema / properties / tasks / items / properties / completed / description
      Previous value: -"Mark complete or incomplete"New value: +"Done"
    • changedInput schema / properties / tasks / items / properties / date / description
      Previous value: -"YYYY-MM-DD — moves the task to this day"New value: +"Date"
    • changedInput schema / properties / tasks / items / properties / endTime / description
      Previous value: -"HH:MM slot end"New value: +"End"
    • changedInput schema / properties / tasks / items / properties / estimatedMinutes / description
      Previous value: -"New estimate in minutes"New value: +"Minutes"
    • removedInput schema / properties / tasks / items / properties / goalId / description
      Removed value: -"Goal id to link to"
    • changedInput schema / properties / tasks / items / properties / priority / description
      Previous value: -"New priority tier"New value: +"Priority"
    • changedInput schema / properties / tasks / items / properties / ref / description
      Previous value: -"Task ref: id from the list, #N, or title"New value: +"Task id, #N, or title"
    • changedInput schema / properties / tasks / items / properties / startTime / description
      Previous value: -"HH:MM slot start"New value: +"Start"
    • changedInput schema / properties / tasks / items / properties / title / description
      Previous value: -"New title; an embedded URL becomes a link attachment"New value: +"Title"
  2. Changed9 schema fields changed
    • addedInput schema / properties / tasks / items / properties / date / maxLength
      Added value: +10
    • addedInput schema / properties / tasks / items / properties / endTime / maxLength
      Added value: +5
    • addedInput schema / properties / tasks / items / properties / estimatedMinutes / maximum
      Added value: +1440
    • addedInput schema / properties / tasks / items / properties / estimatedMinutes / minimum
      Added value: +0
    • addedInput schema / properties / tasks / items / properties / goalId / maxLength
      Added value: +64
    • addedInput schema / properties / tasks / items / properties / ref / maxLength
      Added value: +500
    • addedInput schema / properties / tasks / items / properties / startTime / maxLength
      Added value: +5
    • addedInput schema / properties / tasks / items / properties / title / maxLength
      Added value: +500
    • addedInput schema / properties / tasks / maxItems
      Added value: +100
  3. First observed

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false, so the mutation and safety profile is known and the description does not contradict it. The parenthetical 'date (moves the day)' adds a minor semantic clarification, but the description does not explain behavior for missing refs, idempotent application, or side effects. It is adequate given annotation coverage but adds little extra context.

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?

The description is a single front-loaded sentence with no filler. It is appropriately brief for a straightforward update tool, though terms like 'estimate' and 'done' are informal and slightly reduce precision.

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?

The schema covers all parameters and annotations supply idempotency and non-destructiveness hints, but the description is thin for a tool with 10 editable fields and no output schema. It does not state that updates are keyed by ref, that goalId and loopBucket are also changeable, what happens to omitted fields, or what the tool returns. Core update semantics are clear, but meaningful gaps remain.

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 baseline is 3. The description adds useful aliases like 'estimate' for estimatedMinutes, 'done' for completed, and 'time slot' for start/end times, and clarifies that date moves the day. However, it does not mention ref, goalId, or loopBucket, and the schema descriptions themselves are terse, so parameter meaning is only mildly enhanced.

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 uses a clear imperative verb ('Change') and resource ('tasks'), then enumerates the editable attributes: date, priority, title, estimate, done, time slot. This distinguishes it from create/delete/get siblings by verb, though it omits goalId and loopBucket and does not explicitly contrast with update_goal.

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 usage guidance is provided. The description does not state when to use update_tasks versus create_tasks or delete_tasks, does not mention that only existing tasks are updated, and gives no prerequisites, exclusions, or alternative routing. The verb 'Change' provides weak implicit context only.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: goals, tasks, subtasks, loops, journal, calendar, and stats are cleanly separated. Descriptions include explicit call-order hints (e.g., get_loops before pull_loops) that reduce ambiguity. No two tools appear to do the same thing.

Naming Consistency5/5

Tool names consistently follow a verb_noun snake_case pattern: create_, get_, update_, delete_, pull_, reorder_, write_. Even non-standard verbs like pull_loops and write_journal fit the same predictable structure, making the API easy to navigate.

Tool Count4/5

Sixteen tools is slightly above the typical well-scoped range, but the coverage justifies it given the multiple domains: goals, tasks, subtasks, loops, journal, calendar, and focus stats. Each tool has a clear purpose, so none feel redundant or padding.

Completeness4/5

Goals and tasks have full CRUD coverage, and journal read/write plus loop pulling cover important workflows. Minor gaps exist: loops cannot be created, updated, or deleted, and calendar events are read-only, so some agent actions would require workarounds. Overall, the core planning lifecycle is well supported.

Resources