Google Tasks MCP Server

complete_task

Toggle the completion status of a task

Input Schema

NameRequiredDescriptionDefault
statusNoStatus of task, needsAction or completed
taskIdYesID of the task to toggle completion status

Input Schema (JSON Schema)

{ "properties": { "status": { "description": "Status of task, needsAction or completed", "type": "string" }, "taskId": { "description": "ID of the task to toggle completion status", "type": "string" } }, "required": [ "taskId" ], "type": "object" }