Skip to main content

Template Describe

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.template_describe
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 2b5aa4c76423271fe3d4a59c4b0ecba6212bb21490bb8d209ec747c5018d09e7

Use this to inspect one approved render template's variables and layers before applying it. It is read-only and performs no media processing.

Request Body

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

Arguments Schema

{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Exact preset, rubric, or template name requested by this tool."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"template"
],
"properties": {
"template": {
"type": "object",
"description": "Complete approved template definition.",
"additionalProperties": true
}
},
"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-describe-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.template_describe",
"arguments": {
"name": "name_example"
}
}
}'

Example Responses

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