Skip to main content
Glama

move_task

Idempotent

Move a task to another list while preserving its uid and all properties. Note: subtasks don't move automatically, so move parent and subtasks together to keep the hierarchy intact.

Instructions

Move a task to another task list, keeping its uid and every property. Subtasks are not moved with it, and a parent link only resolves within one list, so move a parent and its subtasks together if you want the hierarchy to survive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesThe task uid.
listNoSource task list, if known.
toListYesDestination task list uri or display name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4.3/5.0
Behavior5/5

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

The description adds substantial behavioral context beyond the annotations: uid and properties are preserved, subtasks are not moved, and parent links only resolve within one list. These are non-obvious consequences that materially affect how an AI agent should plan a move.

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 sentences with no filler. The core action is first, followed by the critical hierarchy caveat. Every sentence earns its place and the structure is easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple parameter set, existing annotations, and no output schema, the description covers the important context an agent needs: what is preserved, what is not moved, and how to preserve hierarchy. The return format is not described, but this is minor for a move operation and not necessary for correct invocation.

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 all three parameters. The description's mention of 'another task list' aligns with toList, but it adds no syntax, format, or default details beyond what the schema provides, so the baseline of 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 specific verb ('Move') and resource ('a task to another task list'), and adds a key constraint: the move preserves the task's uid and properties. It is clear and distinct from siblings like update_task or delete_task, though it does not explicitly name alternatives.

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?

The description provides actionable guidance on how to use the tool correctly: move a parent and its subtasks together to preserve hierarchy, because subtasks are not moved automatically. It does not explicitly state when not to use this tool or name an alternative, but the context is clear.

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