create_research_node
Create hierarchical research nodes to organize concepts, questions, and ideas into structured trees for systematic knowledge exploration and gap analysis.
Instructions
Create a new research node/tile with a concept, question, or idea. Can be attached to a parent node to build a hierarchical tree structure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Brief title for the research node | |
| content | Yes | Detailed content, question, or hypothesis | |
| parentId | No | Optional ID of parent node to attach this to | |
| tags | No | Tags for categorization | |
| type | No | Type of research node |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Detailed content, question, or hypothesis",
"type": "string"
},
"parentId": {
"description": "Optional ID of parent node to attach this to",
"type": "string"
},
"tags": {
"description": "Tags for categorization",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Brief title for the research node",
"type": "string"
},
"type": {
"description": "Type of research node",
"enum": [
"question",
"hypothesis",
"observation",
"method",
"result",
"insight"
],
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}