GonMCPtool

taskUpdate

Update existing task details, including title, description, tags, due date, priority, and status, within GonMCPtool for efficient task management.

Instructions

更新現有任務信息

Input Schema

NameRequiredDescriptionDefault
idYes
updatesYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "type": "string" }, "updates": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "dueDate": { "type": "string" }, "priority": { "type": "number" }, "status": { "enum": [ "pending", "in_progress", "completed", "cancelled" ], "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" } }, "type": "object" } }, "required": [ "id", "updates" ], "type": "object" }
ID: 8xcb3w59pl