list_files
Retrieve a detailed list of files and subdirectories within a specified directory path using the server's file management capabilities.
Instructions
List all files and subdirectories in a given directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory_path | Yes | Absolute path to the directory to list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"directory_path": {
"description": "Absolute path to the directory to list",
"type": "string"
}
},
"required": [
"directory_path"
],
"type": "object"
}