Skip to main content

Brand Kit Delete

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEffmpeg.brand_kit_delete
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 7bceb46e69deca365b079d07f6dee694f919ac92948ff4fb90bf8970749e0370

Use this only to permanently remove a local brand-kit definition. The Portal must require the exact confirmation phrase before execution; media assets already rendered with the kit are not deleted.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-brand-kit-delete-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_delete",
"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": [
"deleted"
],
"properties": {
"deleted": {
"type": "boolean",
"description": "Whether the brand-kit definition was removed."
}
},
"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-delete-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_delete",
"arguments": {
"brand_kit_id": "brand_kit_id_123"
}
}
}'

Example Responses

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