GonMCPtool

taskCreate

Create and manage structured tasks with multiple steps, set priorities, due dates, and tags to organize workflows efficiently.

Instructions

創建新的任務,可以包含多個步驟

Input Schema

NameRequiredDescriptionDefault
descriptionYes
dueDateNo
priorityNo
stepsYes
tagsNo
titleYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "type": "string" }, "dueDate": { "type": "string" }, "priority": { "type": "number" }, "steps": { "items": { "additionalProperties": false, "properties": { "completed": { "type": "boolean" }, "description": { "type": "string" }, "estimatedTime": { "type": "number" }, "order": { "type": "number" } }, "required": [ "description" ], "type": "object" }, "type": "array" }, "tags": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "title", "description", "steps" ], "type": "object" }
ID: 8xcb3w59pl