Skip to main content

Rubric Describe

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.rubric_describe
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: c1a695c89decabed6f19536316167eed5bbd36eec9125935b57ae0d95cc40bfc

Use this to inspect one media-quality rubric and its scoring rules before analysis. It is read-only and performs no media work.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-rubric-describe-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.rubric_describe",
"arguments": {
"name": "name_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Exact preset, rubric, or template name requested by this tool."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"rubric"
],
"properties": {
"rubric": {
"type": "object",
"description": "Complete approved rubric 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-rubric-describe-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.rubric_describe",
"arguments": {
"name": "name_example"
}
}
}'

Example Responses

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