update_node
Modify node details like name and description in mcp-workflowy by specifying the node ID for accurate and efficient updates.
Instructions
Update an existing node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New description/note for the node | |
name | No | New name/title for the node | |
nodeId | Yes | ID of the node to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "New description/note for the node",
"type": "string"
},
"name": {
"description": "New name/title for the node",
"type": "string"
},
"nodeId": {
"description": "ID of the node to update",
"type": "string"
}
},
"required": [
"nodeId"
],
"type": "object"
}