Dart MCP Server

create_task

Create a new Dart task

Input Schema

NameRequiredDescriptionDefault
assignee_duidsNoList of assignee DUIDs
descriptionYesDescription of the task
priorityNoPriority of the task
sizeNoSize/complexity of the task (1-5)
subscriber_duidsNoList of subscriber DUIDs
tagsNoTags for the task
titleYesTitle of the task

Input Schema (JSON Schema)

{ "properties": { "assignee_duids": { "description": "List of assignee DUIDs", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Description of the task", "type": "string" }, "priority": { "description": "Priority of the task", "enum": [ "Low", "Medium", "High", "Critical" ], "type": "string" }, "size": { "description": "Size/complexity of the task (1-5)", "maximum": 5, "minimum": 1, "type": "number" }, "subscriber_duids": { "description": "List of subscriber DUIDs", "items": { "type": "string" }, "type": "array" }, "tags": { "description": "Tags for the task", "items": { "type": "string" }, "type": "array" }, "title": { "description": "Title of the task", "type": "string" } }, "required": [ "title", "description" ], "type": "object" }