list_my_files_and_folders
List files and folders in a specified directory or root path using the DAV MCP Server. Ideal for organizing and accessing Fastmail or iCloud WebDAV storage efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | The specific folder path to list. For example, 'Documents/Work'. If empty, lists files and folders in the main (root) directory. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The specific folder path to list. For example, 'Documents/Work'. If empty, lists files and folders in the main (root) directory.",
"type": "string"
}
},
"type": "object"
}