deep-directory-tree-mcp

by andredezzy
Verified

get_deep_directory_tree

Generate a detailed directory tree for a specified path, customizing depth and excluding unwanted patterns like 'node_modules' or '.git'. Ideal for visualizing complex folder structures efficiently.

Instructions

Get deep directory tree

Input Schema

NameRequiredDescriptionDefault
optionsNoTree generation options
pathYesPath 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" }

You must be authenticated.

Other Tools from deep-directory-tree-mcp

Related Tools

ID: zbfxs2f02m