delete-tasklist
Remove a task list by specifying its ID, effectively managing and organizing tasks within the Google Tasks MCP Server. Simplifies task list cleanup and maintenance.
Instructions
Delete a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasklist | Yes | Task list ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tasklist": {
"description": "Task list ID to delete",
"type": "string"
}
},
"required": [
"tasklist"
],
"type": "object"
}