listDir
List directory contents with metadata (type, size, modification date). Non-recursive exploration to verify filesystem structure.
Instructions
List the contents of a directory with metadata for each entry. Returns a formatted table with columns: Type (d=directory, l=symlink, -=file), Size (bytes), Modified (ISO datetime), and Name. Use this to explore the filesystem, discover files, or verify directory structure. Does not recurse into subdirectories — call again on child directories for deeper exploration. Paths targeting sensitive system directories (e.g. /proc/, /sys/, /dev/) are blocked.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute or relative path to the directory to list. Relative paths are resolved from the server's working directory. Must not be empty or contain null bytes. Examples: `.`, `/home/user/projects`, `./src`. |