Microsoft Todo MCP Service

by jhirono
Verified

create-task

Add new tasks to a specific Microsoft Todo list, specifying title, description, due date, importance, and reminders for efficient task management.

Instructions

Create a new task in a specific Microsoft Todo list. A task is the main todo item that can have a title, description, due date, and other properties.

Input Schema

NameRequiredDescriptionDefault
bodyNoDescription or body content of the task
categoriesNoCategories associated with the task
dueDateTimeNoDue date in ISO format (e.g., 2023-12-31T23:59:59Z)
importanceNoTask importance
isReminderOnNoWhether to enable reminder for this task
listIdYesID of the task list
reminderDateTimeNoReminder date and time in ISO format
startDateTimeNoStart date in ISO format (e.g., 2023-12-31T23:59:59Z)
statusNoStatus of the task
titleYesTitle of the task

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "Description or body content of the task", "type": "string" }, "categories": { "description": "Categories associated with the task", "items": { "type": "string" }, "type": "array" }, "dueDateTime": { "description": "Due date in ISO format (e.g., 2023-12-31T23:59:59Z)", "type": "string" }, "importance": { "description": "Task importance", "enum": [ "low", "normal", "high" ], "type": "string" }, "isReminderOn": { "description": "Whether to enable reminder for this task", "type": "boolean" }, "listId": { "description": "ID of the task list", "type": "string" }, "reminderDateTime": { "description": "Reminder date and time in ISO format", "type": "string" }, "startDateTime": { "description": "Start date in ISO format (e.g., 2023-12-31T23:59:59Z)", "type": "string" }, "status": { "description": "Status of the task", "enum": [ "notStarted", "inProgress", "completed", "waitingOnOthers", "deferred" ], "type": "string" }, "title": { "description": "Title of the task", "type": "string" } }, "required": [ "listId", "title" ], "type": "object" }
ID: mzlsn1su89