get_document_tree
Retrieve and filter hierarchical document structures by root category, including metadata and specifying tree depth, for context-aware project architecture insights on CastPlan MCP.
Instructions
Retrieve the hierarchical document tree structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMetadata | No | Include document metadata | |
maxDepth | No | Maximum tree depth | |
rootCategory | No | Root category to filter by |
Input Schema (JSON Schema)
{
"properties": {
"includeMetadata": {
"default": false,
"description": "Include document metadata",
"type": "boolean"
},
"maxDepth": {
"default": 10,
"description": "Maximum tree depth",
"type": "number"
},
"rootCategory": {
"description": "Root category to filter by",
"enum": [
"master",
"component",
"category"
],
"type": "string"
}
},
"required": [],
"type": "object"
}