Google Tasks MCP Server

create_task

Create a new task in Google Tasks

Input Schema

NameRequiredDescriptionDefault
notesNoNotes for the task
titleYesTitle 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" }