Skip to main content

Media Ingest From URL

Snapshot Catalog Entry

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

POSTffmpeg.media_ingest_from_url

Execute ffmpeg.media_ingest_from_url through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-media-ingest-from-url-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_ingest_from_url",
"arguments": {
"url": "https://example.com/resource",
"filename_hint": "",
"ttl_hours": ""
}
}
}

Arguments Schema

{
"properties": {
"url": {
"type": "string"
},
"filename_hint": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"ttl_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
}
},
"required": [
"url"
],
"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-url-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_ingest_from_url",
"arguments": {
"url": "https://example.com/resource",
"filename_hint": "",
"ttl_hours": ""
}
}
}'

Example Responses

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