google_tasks_list_tasks
Retrieve tasks from a specified Google task list, with options to include or exclude completed tasks, for integration and management within AI-driven workflows.
Instructions
List tasks from a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
showCompleted | No | Whether to include completed tasks | |
taskListId | No | ID of the task list to retrieve tasks from (uses default if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"showCompleted": {
"description": "Whether to include completed tasks",
"type": "boolean"
},
"taskListId": {
"description": "ID of the task list to retrieve tasks from (uses default if not specified)",
"type": "string"
}
},
"type": "object"
}