Skip to main content

Brand Kit Get

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.brand_kit_get
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 4654802e582830e8299e1e3e11e5a16ed245a83d5484954769e625bfa60bc384

Use this to retrieve one local FFmpeg brand-kit definition by ID. It is read-only and never returns external credentials.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-brand-kit-get-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_get",
"arguments": {
"brand_kit_id": "brand_kit_id_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"brand_kit_id"
],
"properties": {
"brand_kit_id": {
"type": "string",
"description": "Existing local brand-kit identifier."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"brand_kit"
],
"properties": {
"brand_kit": {
"type": "object",
"description": "Sanitized local brand-kit 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-brand-kit-get-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_get",
"arguments": {
"brand_kit_id": "brand_kit_id_123"
}
}
}'

Example Responses

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