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

NameRequiredDescriptionDefault
dueNoDue date in RFC 3339 format (e.g., '2025-04-02T10:00:00.000Z')
notesNoNotes or description for the task
taskListIdNoID of the task list to create the task in (uses default if not specified)
titleYesTitle 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" }
ID: opwf6bop3j