Todoist MCP Server

by Chrusic
Verified

todoist_update_project

Update an existing project in Todoist

Input Schema

NameRequiredDescriptionDefault
colorNoNew color for the project (optional)
favoriteNoWhether the project should be a favorite (optional)
nameNoNew name for the project (optional)
project_idYesID of the project to update

Input Schema (JSON Schema)

{ "properties": { "color": { "description": "New color for the project (optional)", "enum": [ "berry_red", "red", "orange", "yellow", "olive_green", "lime_green", "green", "mint_green", "teal", "sky_blue", "light_blue", "blue", "grape", "violet", "lavender", "magenta", "salmon", "charcoal", "grey", "taupe" ], "type": "string" }, "favorite": { "description": "Whether the project should be a favorite (optional)", "type": "boolean" }, "name": { "description": "New name for the project (optional)", "type": "string" }, "project_id": { "description": "ID of the project to update", "type": "string" } }, "required": [ "project_id" ], "type": "object" }