Skip to main content

Media Export To Drive

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTffmpeg.media_export_to_drive

Execute ffmpeg.media_export_to_drive through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-media-export-to-drive-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_export_to_drive",
"arguments": {
"asset_id": "asset_id_123",
"folder_id": ""
}
}
}

Arguments Schema

{
"properties": {
"asset_id": {
"type": "string"
},
"folder_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"asset_id"
],
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ffmpeg-media-export-to-drive-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_export_to_drive",
"arguments": {
"asset_id": "asset_id_123",
"folder_id": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ffmpeg.media_export_to_drive executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}