Todoist MCP Server

by Chrusic
Verified

todoist_create_project_section

Create one or more sections in Todoist projects

Input Schema

NameRequiredDescriptionDefault
nameNoName of the section
orderNoOrder of the section (optional)
project_idNoID of the project
sectionsNoArray of sections to create (for batch operations)

Input Schema (JSON Schema)

{ "anyOf": [ { "required": [ "sections" ] }, { "required": [ "project_id", "name" ] } ], "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" }, "sections": { "description": "Array of sections to create (for batch operations)", "items": { "anyOf": [ { "required": [ "project_id" ] }, { "required": [ "project_name" ] } ], "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 to create the section in", "type": "string" }, "project_name": { "description": "Name of the project to create the section in (if ID not provided)", "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" } }, "type": "object" }