create-task
Add new tasks to Google Tasks by specifying a task list ID, title, optional notes, and due date. Streamline task management directly through the MCP server interface.
Instructions
Create a new task in a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
due | No | Due date in RFC 3339 format (e.g., 2025-03-19T12:00:00Z) | |
notes | No | Notes for the task | |
tasklist | Yes | Task list ID | |
title | Yes | Title of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"due": {
"description": "Due date in RFC 3339 format (e.g., 2025-03-19T12:00:00Z)",
"type": "string"
},
"notes": {
"description": "Notes for the task",
"type": "string"
},
"tasklist": {
"description": "Task list ID",
"type": "string"
},
"title": {
"description": "Title of the task",
"type": "string"
}
},
"required": [
"tasklist",
"title"
],
"type": "object"
}