todoist_create_project
Create and manage new Todoist projects with customizable options like name, color, view style, and parent project for organized task tracking and productivity.
Instructions
Create a new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Project color (optional) | |
isFavorite | No | Whether to mark as favorite (optional) | |
name | Yes | The name of the project | |
parentId | No | Parent project ID for creating a sub-project (optional) | |
viewStyle | No | Project view style: 'list' or 'board' (optional) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Project color (optional)",
"type": "string"
},
"isFavorite": {
"description": "Whether to mark as favorite (optional)",
"type": "boolean"
},
"name": {
"description": "The name of the project",
"type": "string"
},
"parentId": {
"description": "Parent project ID for creating a sub-project (optional)",
"type": "string"
},
"viewStyle": {
"description": "Project view style: 'list' or 'board' (optional)",
"enum": [
"list",
"board"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}