Moves multiple tasks at once to a target column. Filter tasks by teammate name, milestone, or current column. As admin/owner you can move any team member's tasks. If the target column is not found, lists available columns for the user to pick. Requires owner or admin role.
Safety: Write
Tool names, field names, and schema descriptions remain in canonical MCP English so copied calls match the server exactly.
Input schema
| Field | Type | Required | Description |
|---|---|---|---|
project_name |
string | no | Project name or keyword. |
project_id |
integer | no | Exact project ID. |
teammate_name |
string | no | Filter tasks assigned to this teammate (e.g., "Vladimir"). |
from_column_name |
string | no | Only move tasks currently in this column (e.g., "In Progress"). |
milestone_name |
string | no | Only move tasks belonging to this milestone. |
milestone_id |
integer | no | Only move tasks belonging to this milestone ID. |
to_column_name |
string | no | Target column name to move tasks to (e.g., "Done", "Review"). |
to_column_id |
integer | no | Target column ID (optional if to_column_name is provided). |
board_name |
string | no | Board name to narrow column search (helpful when multiple boards have similar column names). |
Example prompt
Use bulk-move-tasks-tool to help me with the relevant Taskavel task.
Example call
{
"name": "bulk-move-tasks-tool",
"arguments": {}
}