Skip to main content

Get Capabilities

Immutable Catalog + Curated Guide

This lossless descriptor comes from the active Portal catalog and is enhanced with reviewed examples.

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

List FFmpeg MCP operations and environment capabilities.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-ffmpeg-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.ffmpeg_capabilities",
"arguments": {}
}
}

Arguments Schema

{
"type": "object",
"properties": {},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"tool_mode",
"tool_names"
],
"properties": {
"limits": {
"type": "object",
"description": "Configured safe media-processing limits.",
"additionalProperties": true
},
"presets": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Approved encoding presets."
},
"tool_mode": {
"type": "string",
"description": "Active individual or router tool mode."
},
"tool_names": {
"type": "array",
"items": {
"type": "string"
},
"description": "Exposed legacy tool names."
}
},
"additionalProperties": true
}

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-ffmpeg-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.ffmpeg_capabilities",
"arguments": {}
}
}'

Example Responses

{
"ok": true,
"capabilities": [
"ffprobe",
"transcode_video",
"extract_audio"
]
}