complete-task
Mark specific tasks as completed in Google Tasks by providing the task list ID and task ID through the Google Tasks MCP Server interface.
Instructions
Mark a task as completed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task | Yes | Task ID to mark as completed | |
tasklist | Yes | Task list ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"task": {
"description": "Task ID to mark as completed",
"type": "string"
},
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist",
"task"
],
"type": "object"
}