addedInput schema / properties / file_name
Added value: +{
+ "anyOf": [
+ {
+ "maxLength": 255,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional account-relative storage path for the video. If omitted, the file is stored under downloads/ with a generated name.",
+ "title": "File Name"
+}
removedInput schema / properties / include_hdplay
Removed value: -{
- "default": false,
- "description": "When true, also download the high-definition hdplay variant. Defaults to false.",
- "title": "Include Hdplay",
- "type": "boolean"
-}
addedInput schema / properties / quality
Added value: +{
+ "default": "standard",
+ "description": "Video quality to download. 'standard' is default quality; 'hd' is high definition. Only one selected quality is downloaded.",
+ "enum": [
+ "standard",
+ "hd"
+ ],
+ "title": "Quality",
+ "type": "string"
+}
removedInput schema / properties / return_mode
Removed value: -{
- "default": "both",
- "description": "How to deliver the result. 'url' returns signed download URLs only. 'file' returns inline base64 when the file is under 10 MB. 'both' returns signed URLs plus inline base64 when small enough.",
- "title": "Return Mode",
- "type": "string"
-}
addedOutput schema / properties / command
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Suggested terminal command for downloading to a local path.",
+ "title": "Command"
+}
addedOutput schema / properties / content_type
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "MIME type of the downloaded file.",
+ "title": "Content Type"
+}
addedOutput schema / properties / download_code
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Short code to pass to the @vee3/cli `vee3-get-file` command.",
+ "title": "Download Code"
+}
changedOutput schema / properties / download_id / description
Previous value: -"Unique download identifier, prefix td_."New value: +"Stable identifier for the reserved agent download session."
addedOutput schema / properties / expires_at
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO 8601 timestamp when the download code can no longer be resolved (60 minutes after reserve).",
+ "title": "Expires At"
+}
addedOutput schema / properties / file_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Account-relative path where the file was stored.",
+ "title": "File Name"
+}
addedOutput schema / properties / file_size_bytes
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Downloaded file size in bytes.",
+ "title": "File Size Bytes"
+}
addedOutput schema / properties / file_url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Signed download URL from account file storage.",
+ "title": "File Url"
+}
removedOutput schema / properties / hdplay
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Signed download URL for the high-definition video when include_hdplay is true.",
- "title": "Hdplay"
-}
addedOutput schema / properties / install_command
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "One-time command to install the Vee3 CLI (`npm install -g @vee3/cli`). On networks that inspect HTTPS, install may require Node 22.15+ with NODE_OPTIONS=--use-system-ca.",
+ "title": "Install Command"
+}
removedOutput schema / properties / play
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Signed download URL for the standard-quality video.",
- "title": "Play"
-}
addedOutput schema / properties / quality
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Echo of the requested video quality (standard or hd).",
+ "title": "Quality"
+}
addedOutput schema / properties / retained_until
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO 8601 timestamp when account storage retention expires.",
+ "title": "Retained Until"
+}
removedOutput schema / properties / return_mode
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Echo of the requested delivery mode.",
- "title": "Return Mode"
-}
addedOutput schema / properties / tiktok_download_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Unique TikTok download operation identifier, prefix td_.",
+ "title": "Tiktok Download Id"
+}
addedOutput schema / properties / troubleshooting
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "What to do if installation or downloading fails: re-read this tool's description via meta-tools.describe for setup and troubleshooting steps.",
+ "title": "Troubleshooting"
+}