Google Super
GOOGLESUPER_LIST_TASKS
Retrieves tasks from a Google Tasks list; all date/time strings must be RFC3339 UTC, and `showCompleted` must be true if `completedMin` or `completedMax` are specified.
Remote googlesuper
Other tools also called GOOGLESUPER_LIST_TASKS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"dueMax": {
"type": "string",
"title": "Due Max",
"examples": [
"2025-09-28T23:59:00Z",
"28 Sep 2025",
"11:59 PM, 22 Sep 2025",
"1:00 PM, 21 Sep 2025",
"UTC-5:30, 6:50 PM",
"UTC+1, 11:59 PM, 31 Dec",
"2025-09-21T15:30:00+02:00"
],
"description": "Exclude tasks due after this date. \nGoogle Tasks API requires dates in RFC3339 format (e.g., 2025-09-22T13:48:27Z).\nWe automatically convert various human-readable formats to RFC3339:\n\nAccepted formats:\n• 2025-09-28T23:59:00Z → RFC3339/ISO-8601 format (preferred) - September 28, 2025 at 11:59 PM UTC\n• 28 Sep 2025 → Simple date format - Will be converted to midnight UTC on that date\n• 11:59 PM, 22 Sep 2025 → Time with date - Assumes UTC timezone if not specified\n• 1:00 PM, 21 Sep 2025 → 12-hour format with date - Converted to 13:00 UTC\n• UTC-5:30, 6:50 PM → With timezone offset - Converted to UTC automatically\n• UTC+1, 11:59 PM, 31 Dec → Timezone with date - Next occurrence of Dec 31\n• 2025-09-21T15:30:00+02:00 → RFC3339 with timezone offset\n\nNote: If no timezone is specified, UTC is assumed. Dates without times default to midnight UTC."
},
"dueMin": {
"type": "string",
"title": "Due Min",
"examples": [
"2025-09-28T23:59:00Z",
"28 Sep 2025",
"11:59 PM, 22 Sep 2025",
"1:00 PM, 21 Sep 2025",
"UTC-5:30, 6:50 PM",
"UTC+1, 11:59 PM, 31 Dec",
"2025-09-21T15:30:00+02:00"
],
"description": "Exclude tasks due before this date. \nGoogle Tasks API requires dates in RFC3339 format (e.g., 2025-09-22T13:48:27Z).\nWe automatically convert various human-readable formats to RFC3339:\n\nAccepted formats:\n• 2025-09-28T23:59:00Z → RFC3339/ISO-8601 format (preferred) - September 28, 2025 at 11:59 PM UTC\n• 28 Sep 2025 → Simple date format - Will be converted to midnight UTC on that date\n• 11:59 PM, 22 Sep 2025 → Time with date - Assumes UTC timezone if not specified\n• 1:00 PM, 21 Sep 2025 → 12-hour format with date - Converted to 13:00 UTC\n• UTC-5:30, 6:50 PM → With timezone offset - Converted to UTC automatically\n• UTC+1, 11:59 PM, 31 Dec → Timezone with date - Next occurrence of Dec 31\n• 2025-09-21T15:30:00+02:00 → RFC3339 with timezone offset\n\nNote: If no timezone is specified, UTC is assumed. Dates without times default to midnight UTC."
},
"pageToken": {
"type": "string",
"title": "Page Token",
"examples": [
"CiAKGjBpbmRXUTA1Y1cxVWF6b2hVbkprZWxTelNVUWdRMBoOCL2q0qcCELqGmgsQ0KG3jAE="
],
"description": "Token from a previous list operation for fetching a specific page; if omitted, retrieves the first page."
},
"maxResults": {
"type": "integer",
"title": "Max Results",
"examples": [
"20",
"50",
"100"
],
"description": "Maximum number of tasks to return. API default: 20, maximum: 100."
},
"showHidden": {
"type": "boolean",
"title": "Show Hidden",
"description": "Include hidden tasks. Defaults to false."
},
"updatedMin": {
"type": "string",
"title": "Updated Min",
"examples": [
"2025-09-28T23:59:00Z",
"28 Sep 2025",
"11:59 PM, 22 Sep 2025",
"1:00 PM, 21 Sep 2025",
"UTC-5:30, 6:50 PM",
"UTC+1, 11:59 PM, 31 Dec",
"2025-09-21T15:30:00+02:00"
],
"description": "Lower bound for task's last modification time (for syncing). \nGoogle Tasks API requires dates in RFC3339 format (e.g., 2025-09-22T13:48:27Z).\nWe automatically convert various human-readable formats to RFC3339:\n\nAccepted formats:\n• 2025-09-28T23:59:00Z → RFC3339/ISO-8601 format (preferred) - September 28, 2025 at 11:59 PM UTC\n• 28 Sep 2025 → Simple date format - Will be converted to midnight UTC on that date\n• 11:59 PM, 22 Sep 2025 → Time with date - Assumes UTC timezone if not specified\n• 1:00 PM, 21 Sep 2025 → 12-hour format with date - Converted to 13:00 UTC\n• UTC-5:30, 6:50 PM → With timezone offset - Converted to UTC automatically\n• UTC+1, 11:59 PM, 31 Dec → Timezone with date - Next occurrence of Dec 31\n• 2025-09-21T15:30:00+02:00 → RFC3339 with timezone offset\n\nNote: If no timezone is specified, UTC is assumed. Dates without times default to midnight UTC."
},
"showDeleted": {
"type": "boolean",
"title": "Show Deleted",
"description": "Include deleted tasks. Defaults to false."
},
"tasklist_id": {
"type": "string",
"title": "Tasklist Id",
"examples": [
"@default",
"MdXxc1BhcEt4NVJhcEVXMQ"
],
"description": "Identifier of the task list. Use '@default' for the user's primary task list."
},
"completedMax": {
"type": "string",
"title": "Completed Max",
"examples": [
"2025-09-28T23:59:00Z",
"28 Sep 2025",
"11:59 PM, 22 Sep 2025",
"1:00 PM, 21 Sep 2025",
"UTC-5:30, 6:50 PM",
"UTC+1, 11:59 PM, 31 Dec",
"2025-09-21T15:30:00+02:00"
],
"description": "Exclude tasks completed after this date. \nGoogle Tasks API requires dates in RFC3339 format (e.g., 2025-09-22T13:48:27Z).\nWe automatically convert various human-readable formats to RFC3339:\n\nAccepted formats:\n• 2025-09-28T23:59:00Z → RFC3339/ISO-8601 format (preferred) - September 28, 2025 at 11:59 PM UTC\n• 28 Sep 2025 → Simple date format - Will be converted to midnight UTC on that date\n• 11:59 PM, 22 Sep 2025 → Time with date - Assumes UTC timezone if not specified\n• 1:00 PM, 21 Sep 2025 → 12-hour format with date - Converted to 13:00 UTC\n• UTC-5:30, 6:50 PM → With timezone offset - Converted to UTC automatically\n• UTC+1, 11:59 PM, 31 Dec → Timezone with date - Next occurrence of Dec 31\n• 2025-09-21T15:30:00+02:00 → RFC3339 with timezone offset\n\nNote: If no timezone is specified, UTC is assumed. Dates without times default to midnight UTC."
},
"completedMin": {
"type": "string",
"title": "Completed Min",
"default": null,
"examples": [
"2025-09-28T23:59:00Z",
"28 Sep 2025",
"11:59 PM, 22 Sep 2025",
"1:00 PM, 21 Sep 2025",
"UTC-5:30, 6:50 PM",
"UTC+1, 11:59 PM, 31 Dec",
"2025-09-21T15:30:00+02:00"
],
"nullable": true,
"description": "Exclude tasks completed before this date. \nGoogle Tasks API requires dates in RFC3339 format (e.g., 2025-09-22T13:48:27Z).\nWe automatically convert various human-readable formats to RFC3339:\n\nAccepted formats:\n• 2025-09-28T23:59:00Z → RFC3339/ISO-8601 format (preferred) - September 28, 2025 at 11:59 PM UTC\n• 28 Sep 2025 → Simple date format - Will be converted to midnight UTC on that date\n• 11:59 PM, 22 Sep 2025 → Time with date - Assumes UTC timezone if not specified\n• 1:00 PM, 21 Sep 2025 → 12-hour format with date - Converted to 13:00 UTC\n• UTC-5:30, 6:50 PM → With timezone offset - Converted to UTC automatically\n• UTC+1, 11:59 PM, 31 Dec → Timezone with date - Next occurrence of Dec 31\n• 2025-09-21T15:30:00+02:00 → RFC3339 with timezone offset\n\nNote: If no timezone is specified, UTC is assumed. Dates without times default to midnight UTC."
},
"showCompleted": {
"type": "boolean",
"title": "Show Completed",
"description": "Include completed tasks. Defaults to true. (See action docstring for interaction with `completedMin`/`Max`)."
}
}
}