get_file_or_folder_details
Fetch detailed metadata for a specific file or folder using its unique URL from DAV MCP Server, aiding in managing CalDAV, CardDAV, and WebDAV services effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileUrl | Yes | The unique identifier (URL) of the file or folder to get details for. You can get this from 'list_my_files_and_folders'. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileUrl": {
"description": "The unique identifier (URL) of the file or folder to get details for. You can get this from 'list_my_files_and_folders'.",
"type": "string"
}
},
"required": [
"fileUrl"
],
"type": "object"
}