Todoist MCP

add-project

Add a project to Todoist

Input Schema

NameRequiredDescriptionDefault
colorNo
isFavoriteNo
nameYes
parentIdNoThe ID of a parent project
viewStyleNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "color": { "enum": [ "berry_red", "light_blue", "red", "blue", "orange", "grape", "yellow", "violet", "olive_green", "lavender", "lime_green", "magenta", "green", "salmon", "mint_green", "charcoal", "teal", "grey", "sky_blue" ], "type": "string" }, "isFavorite": { "type": "boolean" }, "name": { "type": "string" }, "parentId": { "description": "The ID of a parent project", "type": "string" }, "viewStyle": { "enum": [ "list", "board", "calendar" ], "type": "string" } }, "required": [ "name" ], "type": "object" }