Microsoft Todo MCP Service

by jhirono
Verified

create-checklist-item

Add a checklist item to break a task into smaller, actionable steps in Microsoft Todo. Specify the task ID, list ID, and item content to organize and track progress effectively.

Instructions

Create a new checklist item (subtask) for a task. Checklist items help break down a task into smaller, manageable steps.

Input Schema

NameRequiredDescriptionDefault
displayNameYesText content of the checklist item
isCheckedNoWhether the item is checked off
listIdYesID of the task list
taskIdYesID of the task

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "displayName": { "description": "Text content of the checklist item", "type": "string" }, "isChecked": { "description": "Whether the item is checked off", "type": "boolean" }, "listId": { "description": "ID of the task list", "type": "string" }, "taskId": { "description": "ID of the task", "type": "string" } }, "required": [ "listId", "taskId", "displayName" ], "type": "object" }
ID: mzlsn1su89