Brand Kit Delete
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- 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
- Node.js
- Python
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"
}
}
}'
const response = await fetch('https://portal.madpanda3d.com/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"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"
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://portal.madpanda3d.com/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"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"
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 502 Upstream Error
{
"ok": true,
"message": "Tool ffmpeg.brand_kit_delete executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}
{
"ok": false,
"classification": "upstream_http_error",
"message": "Upstream MCP returned a non-success status."
}