Todoist MCP Server

by mikemc
Verified

todoist_update_project

Modify an existing Todoist project by updating its name, color, favorite status, or view style. Use this tool to keep your task management system organized and tailored to your preferences.

Instructions

Update an existing project in Todoist

Args: project_id: ID of the project to update name: New name for the project (optional) color: New color for the project (optional) is_favorite: Whether the project should be marked as favorite (optional) view_style: View style of the project, either 'list' or 'board' (optional)

Input Schema

NameRequiredDescriptionDefault
colorNo
is_favoriteNo
nameNo
project_idYes
view_styleNo

Input Schema (JSON Schema)

{ "properties": { "color": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Color" }, "is_favorite": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Is Favorite" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Name" }, "project_id": { "title": "Project Id", "type": "string" }, "view_style": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "View Style" } }, "required": [ "project_id" ], "title": "todoist_update_projectArguments", "type": "object" }
ID: rhxk8wxe9p