create-tasklist
Generate a new task list with a specified title using the Google Tasks MCP Server. Simplify task organization directly through the Claude interface.
Instructions
Create a new task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the new task list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "Title of the new task list",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}