list-tasks
Retrieve and display all tasks from a specified task list, with options to include completed, hidden, or deleted tasks, using the Google Tasks MCP Server integration.
Instructions
List all tasks in a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
showCompleted | No | Whether to include completed tasks | |
showDeleted | No | Whether to include deleted tasks | |
showHidden | No | Whether to include hidden tasks | |
tasklist | Yes | Task list ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"showCompleted": {
"description": "Whether to include completed tasks",
"type": "boolean"
},
"showDeleted": {
"description": "Whether to include deleted tasks",
"type": "boolean"
},
"showHidden": {
"description": "Whether to include hidden tasks",
"type": "boolean"
},
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist"
],
"type": "object"
}