godspeed-mcp

by AliNagy
Verified

updateTask

Input Schema

NameRequiredDescriptionDefault
add_label_idsNo
add_label_namesNo
due_atNo
duration_minutesNo
idYes
is_clearedNo
is_completeNo
metadataNo
notesNo
remove_label_idsNo
remove_label_namesNo
snoozed_untilNo
starts_atNo
timeless_due_atNo
timeless_snoozed_untilNo
timeless_starts_atNo
titleNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "add_label_ids": { "items": { "type": "string" }, "type": "array" }, "add_label_names": { "items": { "type": "string" }, "type": "array" }, "due_at": { "format": "date-time", "type": "string" }, "duration_minutes": { "minimum": 0, "type": "integer" }, "id": { "type": "string" }, "is_cleared": { "type": "boolean" }, "is_complete": { "type": "boolean" }, "metadata": { "additionalProperties": {}, "type": "object" }, "notes": { "type": "string" }, "remove_label_ids": { "items": { "type": "string" }, "type": "array" }, "remove_label_names": { "items": { "type": "string" }, "type": "array" }, "snoozed_until": { "format": "date-time", "type": "string" }, "starts_at": { "format": "date-time", "type": "string" }, "timeless_due_at": { "type": "string" }, "timeless_snoozed_until": { "type": "string" }, "timeless_starts_at": { "type": "string" }, "title": { "type": "string" } }, "required": [ "id" ], "type": "object" }