delete-task
Remove a specific task from a Google Tasks list by providing the task and task list IDs. Simplifies task management through the Google Tasks MCP Server integration.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task | Yes | Task ID to delete | |
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 delete",
"type": "string"
},
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist",
"task"
],
"type": "object"
}