toggle_complete
Mark or unmark a node as complete by toggling its status in the mcp-workflowy system. Specify the node ID and the desired completion state.
Instructions
Toggle completion status of a node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
completed | Yes | Whether the node should be marked as complete (true) or incomplete (false) | |
nodeId | Yes | ID of the node to toggle completion status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"completed": {
"description": "Whether the node should be marked as complete (true) or incomplete (false)",
"type": "boolean"
},
"nodeId": {
"description": "ID of the node to toggle completion status",
"type": "string"
}
},
"required": [
"nodeId",
"completed"
],
"type": "object"
}