google_tasks_create_task
Create and manage tasks within Google Tasks by specifying a title, notes, due date, and task list. Integrates with Google MCP for AI-driven task management workflows.
Instructions
Create a new task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
due | No | Due date in RFC 3339 format (e.g., '2025-04-02T10:00:00.000Z') | |
notes | No | Notes or description for the task | |
taskListId | No | ID of the task list to create the task in (uses default if not specified) | |
title | Yes | Title of the task |
Input Schema (JSON Schema)
{
"properties": {
"due": {
"description": "Due date in RFC 3339 format (e.g., '2025-04-02T10:00:00.000Z')",
"type": "string"
},
"notes": {
"description": "Notes or description for the task",
"type": "string"
},
"taskListId": {
"description": "ID of the task list to create the task in (uses default if not specified)",
"type": "string"
},
"title": {
"description": "Title of the task",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}