addedInput schema / properties / file_name
Added value: +{
+ "anyOf": [
+ {
+ "maxLength": 255,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional account-relative storage path for the music file. If omitted, the file is stored under downloads/ with a generated name.",
+ "title": "File Name"
+}
removedInput schema / properties / return_mode
Removed value: -{
- "default": "both",
- "description": "How to deliver the result. 'url' returns a signed download URL only. 'file' returns inline base64 when the file is under 10 MB. 'both' returns the signed URL 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 / 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_url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Signed download URL from account file storage.",
+ "title": "File Url"
+}
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 music file.",
- "title": "Play"
-}
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"
+}