Skip to main content

Brand Kit Upsert

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEffmpeg.brand_kit_upsert
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.3
  • Descriptor hash: e628035441901f318da1b5d0030815f3d41b7e995084a3ec86af7d34bbb78fff

Use this to create or replace a local FFmpeg brand-kit definition used by later renders. It changes persistent configuration state but does not render media by itself.

Request Body

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

Arguments Schema

{
"type": "object",
"required": [
"brand_kit"
],
"properties": {
"brand_kit": {
"type": "object",
"description": "Complete brand-kit object to validate and create or replace.",
"additionalProperties": true
}
},
"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-upsert-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_upsert",
"arguments": {
"brand_kit": {}
}
}
}'

Example Responses

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