webdav_read_remote_file
Read file content from remote WebDAV servers with options to extract specific line ranges using head or tail parameters for efficient data retrieval.
Instructions
Read content from a file on a remote WebDAV server with enhanced options (head/tail)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
head | No | If provided, returns only the first N lines of the file | |
path | Yes | ||
tail | No | If provided, returns only the last N lines of the file |
Input Schema (JSON Schema)
{
"properties": {
"head": {
"description": "If provided, returns only the first N lines of the file",
"type": "number"
},
"path": {
"minLength": 1,
"type": "string"
},
"tail": {
"description": "If provided, returns only the last N lines of the file",
"type": "number"
}
},
"required": [
"path"
],
"type": "object"
}