update_research_node
Modify existing research nodes by updating titles, content, tags, or status to maintain current research information within hierarchical organization systems.
Instructions
Update an existing research node with new information or refinements
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | Yes | ID of the node to update | |
| title | No | New title (optional) | |
| content | No | New or updated content (optional) | |
| tags | No | Updated tags (optional) | |
| status | No | Research status (optional) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New or updated content (optional)",
"type": "string"
},
"nodeId": {
"description": "ID of the node to update",
"type": "string"
},
"status": {
"description": "Research status (optional)",
"enum": [
"exploring",
"active",
"completed",
"archived"
],
"type": "string"
},
"tags": {
"description": "Updated tags (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "New title (optional)",
"type": "string"
}
},
"required": [
"nodeId"
],
"type": "object"
}