Skip to main content

Brand Kit List

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Use this to list available local brand-kit IDs before selecting one for a render. It is read-only and returns no credential values.

Request Body

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

Arguments Schema

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

Output Schema

{
"type": "object",
"required": [
"brand_kit_ids"
],
"properties": {
"brand_kit_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Available local brand-kit IDs."
}
},
"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-brand-kit-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_list",
"arguments": {}
}
}'

Example Responses

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