Skip to main content

Media Get Download URL

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.media_get_download_url
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: a8dd81dfbf90ab8667f104c07ddd18bf5c2fb5c84c19db649bc3541707c6b769

Use this to obtain a time-limited signed download URL for an unexpired staged asset. It does not expose storage credentials or change the asset.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-media-get-download-url-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_get_download_url",
"arguments": {
"asset_id": "asset_id_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"asset_id"
],
"properties": {
"asset_id": {
"type": "string",
"description": "Stable ID of one staged FFmpeg media asset."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"url",
"expires_at"
],
"properties": {
"url": {
"type": "string",
"description": "Time-limited signed public download URL."
},
"expires_at": {
"type": "integer",
"description": "Unix timestamp at which the URL expires."
}
},
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ffmpeg-media-get-download-url-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.media_get_download_url",
"arguments": {
"asset_id": "asset_id_123"
}
}
}'

Example Responses

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