AiDD MCP Server

list_directory

Get a detailed listing of files and directories in the specified path. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within the allowed directory. Example: Enter 'src' to list contents of the src directory, or '.' for current directory.

Input Schema

NameRequiredDescriptionDefault
pathYesPath of the directory to list

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path of the directory to list", "type": "string" } }, "required": [ "path" ], "type": "object" }