createTaskList
Generate and manage task lists on the godspeed-mcp server by defining a name and optional list ID to organize tasks efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
empty_list_id | No | list_98765zyxwvu43210 | |
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"empty_list_id": {
"default": "list_98765zyxwvu43210",
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}