delete_task
Remove a specific task from your default task list by providing its unique ID. Integrates with Google Tasks API via the MCP server to manage tasks effectively.
Instructions
Delete a task from the default task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | ID of the task to delete |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "ID of the task to delete",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}