/google-task | Type: Application | PCID required: Yes
Task lists and task management
Tools
| Tool | Description |
|---|---|
google-task_list_tasks | List tasks from Google Tasks with optional pagination |
google-task_get_task | Retrieve a specific task from Google Tasks by its ID |
google-task_create_task | Create a new task in Google Tasks |
google-task_update_task | Update an existing task in Google Tasks |
google-task_delete_task | Delete a task from Google Tasks |
google-task_clear_tasks | Clear completed tasks from a Google Tasks list |
google-task_search_tasks | Search for tasks in Google Tasks using a query string |
google-task_list_tasks
List tasks from Google Tasks with optional pagination Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskListId | string | No | — | Task list ID to list tasks from |
cursor | string | No | — | Cursor to paginate through tasks |
google-task_get_task
Retrieve a specific task from Google Tasks by its ID Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskId | string | Yes | — | Task ID to retrieve |
taskListId | string | No | — | Task list ID to retrieve the task from |
google-task_create_task
Create a new task in Google Tasks Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskListId | string | No | — | Task list ID to create the task in |
title | string | Yes | — | Title of the task |
notes | string | No | — | Notes of the task |
due | string | No | — | Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ) |
status | string | No | — | Status of the task |
google-task_update_task
Update an existing task in Google Tasks Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskId | string | Yes | — | Task ID to update |
taskListId | string | No | — | Task list ID to update the task in |
title | string | No | — | Title of the task |
notes | string | No | — | Notes of the task |
due | string | No | — | Due date of the task. Accepts simple date (YYYY-MM-DD) or full ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ) |
status | string | No | — | Status of the task |
google-task_delete_task
Delete a task from Google Tasks Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskId | string | Yes | — | Task ID to delete |
taskListId | string | No | — | Task list ID to delete the task from |
google-task_clear_tasks
Clear completed tasks from a Google Tasks list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
taskListId | string | Yes | — | Task list ID to clear completed tasks from |
google-task_search_tasks
Search for tasks in Google Tasks using a query string Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Query to search for tasks |

