Skip to main content

Template List

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.template_list
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 6aa33df5023ce81b0e5455a943a5eab5d8f38c775bd2db97bda7335cc85852cd

Use this to list the approved server-side render templates before choosing one for template_apply. It is read-only and performs no media processing.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-template-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.template_list",
"arguments": {}
}
}

Arguments Schema

{
"type": "object",
"properties": {},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"templates"
],
"properties": {
"templates": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Approved template summaries."
}
},
"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-template-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.template_list",
"arguments": {}
}
}'

Example Responses

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