Integrates with Google Tasks to allow listing, reading, searching, creating, updating, and deleting tasks.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
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.