Brand Kit List
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- 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
- 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-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_list",
"arguments": {}
}
}'
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-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_list",
"arguments": {}
}
}),
});
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-list-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.brand_kit_list",
"arguments": {}
}
}
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_list 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."
}