get_research_insights
Analyze research trees to identify patterns, gaps, and potential research directions using cluster, path, gap, or summary analysis methods.
Instructions
Analyze the research tree to identify patterns, gaps, and potential research directions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| analysisType | Yes | Type of analysis to perform | |
| focusArea | No | Optional focus area (tag or node ID) |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "Type of analysis to perform",
"enum": [
"gaps",
"clusters",
"paths",
"summary"
],
"type": "string"
},
"focusArea": {
"description": "Optional focus area (tag or node ID)",
"type": "string"
}
},
"required": [
"analysisType"
],
"type": "object"
}