get_deep_directory_tree
Visualize complex directory structures by generating a deep tree view. Specify path, depth, and exclude patterns to efficiently navigate and manage filesystem hierarchies.
Instructions
Get deep directory tree
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | Tree generation options | |
path | Yes | Path to get the directory tree (preferably absolute path) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"additionalProperties": false,
"default": {
"depth": 3,
"excludePatterns": [
"node_modules",
".git",
".turbo",
"dist",
".next"
]
},
"description": "Tree generation options",
"properties": {
"depth": {
"default": 3,
"description": "Depth of the directory tree",
"type": "number"
},
"excludePatterns": {
"default": [
"node_modules",
".git",
".turbo",
"dist",
".next"
],
"description": "Patterns to exclude from the tree (e.g., ['node_modules', '*.log'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"path": {
"description": "Path to get the directory tree (preferably absolute path)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}