create_task
Add a new task to Google Tasks by specifying a title and optional notes, enabling efficient task management and organization.
Instructions
Create a new task in Google Tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | No | Notes for the task | |
title | Yes | Title of the task |
Input Schema (JSON Schema)
{
"properties": {
"notes": {
"description": "Notes for the task",
"type": "string"
},
"title": {
"description": "Title of the task",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}