Integrates with Google Tasks to allow listing, reading, searching, creating, updating, and deleting tasks.
No reviews yet. Be the first to review!
Sign in to join the conversation
Search for tasks in Google Tasks. Input: `query` (string): Search query. Returns matching tasks with details.
List all tasks in Google Tasks. Optional input: `cursor` (string): Cursor for pagination. Returns a list of all tasks.
Create a new task in Google Tasks. Input: `taskListId` (string, optional), `title` (string, required), `notes` (string, optional), `due` (string, optional). Returns confirmation of task creation.
Update an existing task in Google Tasks. Input: `taskListId` (string, optional), `id` (string, required), `uri` (string, required), `title` (string, optional), `notes` (string, optional), `status` (string, optional), `due` (string, optional). Returns confirmation of task update.
Delete a task in Google Tasks. Input: `taskListId` (string, required), `id` (string, required). Returns confirmation of task deletion.
Clear completed tasks from a Google Tasks task list. Input: `taskListId` (string, required). Returns confirmation of cleared tasks.