Skip to main content

Media Ingest From Drive

Snapshot Catalog Entry

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

POSTffmpeg.media_ingest_from_drive

Execute ffmpeg.media_ingest_from_drive through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-media-ingest-from-drive-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_ingest_from_drive",
"arguments": {
"drive_file_id": "drive_file_id_123",
"ttl_hours": ""
}
}
}

Arguments Schema

{
"properties": {
"drive_file_id": {
"type": "string"
},
"ttl_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
}
},
"required": [
"drive_file_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-ingest-from-drive-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_ingest_from_drive",
"arguments": {
"drive_file_id": "drive_file_id_123",
"ttl_hours": ""
}
}
}'

Example Responses

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