export_research_tree
Export research trees in JSON, Markdown, Mermaid, or DOT formats to visualize research hierarchies and analyze connections between questions, hypotheses, methods, and results.
Instructions
Export the research tree in various formats for visualization or further analysis
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Export format | |
| nodeId | No | Export from specific node (optional, default: entire tree) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Export format",
"enum": [
"json",
"markdown",
"mermaid",
"dot"
],
"type": "string"
},
"nodeId": {
"description": "Export from specific node (optional, default: entire tree)",
"type": "string"
}
},
"required": [
"format"
],
"type": "object"
}