Skip to main content
Glama

Batch move tasks

batch_move_tasks
Destructive

Move multiple OmniFocus tasks to a project, parent task, or inbox in a single operation. Specify tasks by ID or name, and preview changes with dry-run.

Instructions

Move multiple tasks to a project, parent task, or inbox in a single operation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tasksYesArray of tasks to move
dryRunNoResolve the destination and every task exactly as a real move would and report what WOULD move (including each task's current container), without moving anything. Default false.
targetInboxNoMove tasks to inbox
targetProjectIdNoDestination project ID
targetProjectNameNoDestination project name
targetParentTaskIdNoDestination parent task ID
targetParentTaskNameNoDestination parent task name

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true, and the description's 'Move' matches that destructive intent without contradicting it. The description adds the scope of the operation but does not disclose details like partial failure behavior, conflicts between destinations, or atomicity. With annotations carrying the destructive-safety signal, this is acceptable but not rich.

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?

One sentence with no filler. It front-loads the action, scope, and allowed destinations, making the tool's core purpose immediately clear.

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 and output schema cover a lot, but the description does not clarify an important cross-parameter constraint: whether exactly one destination must be specified and what happens if multiple target parameters are provided. Since only 'tasks' is required in the schema, an agent might invoke the tool without a destination and fail. This gap keeps the definition from being fully complete.

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 parameter names and descriptions already explain each field. The description adds general destination types (project, parent task, inbox) that map onto the target parameters, but it does not add meaning beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Move multiple tasks to a project, parent task, or inbox in a single operation.' It clearly scopes the tool to batch operation over multiple tasks, distinguishing it from the sibling move_task which handles a single task.

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 clearly conveys when to use this tool: when moving multiple tasks at once. It doesn't explicitly name alternatives or exclusions, but the 'multiple tasks' and 'single operation' phrasing provides enough context to route an agent toward this tool for batch moves and away from single-task equivalents.

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