Todoist MCP Server

by Chrusic
Verified

todoist_move_task

Move a task to a different section and/or project

Input Schema

NameRequiredDescriptionDefault
project_idNoID of the project to move the task to (optional)
section_idNoID of the section to move the task to (optional)
task_nameYesName/content of the task to move

Input Schema (JSON Schema)

{ "properties": { "project_id": { "description": "ID of the project to move the task to (optional)", "type": "string" }, "section_id": { "description": "ID of the section to move the task to (optional)", "type": "string" }, "task_name": { "description": "Name/content of the task to move", "type": "string" } }, "required": [ "task_name" ], "type": "object" }