Todoist MCP Server

by Chrusic
Verified

todoist_create_section

Create a new section in a Todoist project

Input Schema

NameRequiredDescriptionDefault
nameYesName of the section
orderNoOrder of the section (optional)
project_idYesID of the project

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Name of the section", "type": "string" }, "order": { "description": "Order of the section (optional)", "type": "number" }, "project_id": { "description": "ID of the project", "type": "string" } }, "required": [ "project_id", "name" ], "type": "object" }