move-task
Relocate a task within a Google Tasks list by specifying its new position, parent task, or sibling task using the MCP server integration for efficient task management.
Instructions
Move a task to another position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parent | No | Optional new parent task ID | |
previous | No | Optional previous sibling task ID | |
task | Yes | Task ID to move | |
tasklist | Yes | Task list ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parent": {
"description": "Optional new parent task ID",
"type": "string"
},
"previous": {
"description": "Optional previous sibling task ID",
"type": "string"
},
"task": {
"description": "Task ID to move",
"type": "string"
},
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist",
"task"
],
"type": "object"
}