google_tasks_delete_task
Removes a specific task from a Google Tasks list by providing its task ID. Optionally, specify the task list ID for targeted deletion within Google MCP server.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | ID of the task to delete | |
taskListId | No | ID of the task list the task belongs to (uses default if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "ID of the task to delete",
"type": "string"
},
"taskListId": {
"description": "ID of the task list the task belongs to (uses default if not specified)",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}