folder-structure
Visualize directory structures with customizable depth to analyze and organize project folders effectively within the CodeAnalysis MCP Server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Depth of folders to show | |
path | No | Relative path to the directory | . |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"depth": {
"default": 2,
"description": "Depth of folders to show",
"type": "number"
},
"path": {
"default": ".",
"description": "Relative path to the directory",
"type": "string"
}
},
"type": "object"
}