List Capabilities
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:
0bb7a7bd51a9576b39892b897e90dfbed336f6b9eedce6a6d588af8aa12515a6
Use this to understand the FFmpeg MCP surface by category and risk. Set include_descriptors to true when the caller needs the complete, lossless, versioned ToolManifest for catalog ingestion; it performs no media work.
Request Body
{
"jsonrpc": "2.0",
"id": "ffmpeg-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"include_descriptors": {
"type": "boolean",
"default": false,
"description": "When true, include the complete ordered ToolManifest descriptors at the response top level."
}
},
"additionalProperties": false
}
Output Schema
{
"type": "object",
"$defs": {
"toolDescriptor": {
"type": "object",
"required": [
"serviceId",
"nativeToolName",
"canonicalName",
"aliases",
"title",
"description",
"category",
"deprecation",
"inputSchema",
"outputSchema",
"annotations",
"confirmation",
"documentationUrl",
"navigationRole",
"catalogVersion",
"tier",
"descriptorHash"
],
"properties": {
"tier": {
"enum": [
"agent_ready",
"legacy",
"hidden"
]
},
"title": {
"type": "string",
"minLength": 1
},
"aliases": {
"type": "array",
"items": {
"type": "string"
}
},
"category": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "ffmpeg"
},
"annotations": {
"type": "object",
"required": [
"readOnlyHint",
"destructiveHint",
"openWorldHint",
"idempotentHint"
],
"properties": {
"readOnlyHint": {
"type": "boolean"
},
"openWorldHint": {
"type": "boolean"
},
"idempotentHint": {
"type": "boolean"
},
"destructiveHint": {
"type": "boolean"
}
},
"additionalProperties": false
},
"deprecation": {
"type": "object",
"required": [
"deprecated",
"since",
"replacement",
"sunsetAt",
"message"
],
"properties": {
"since": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"sunsetAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"deprecated": {
"type": "boolean"
},
"replacement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"description": {
"type": "string",
"minLength": 1
},
"inputSchema": {
"type": "object",
"additionalProperties": true
},
"confirmation": {
"type": "object",
"required": [
"required",
"parameter",
"exactPhrase",
"when"
],
"properties": {
"when": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"required": {
"type": "boolean"
},
"parameter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"exactPhrase": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"outputSchema": {
"type": "object",
"additionalProperties": true
},
"canonicalName": {
"type": "string",
"minLength": 1
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"nativeToolName": {
"type": "string",
"minLength": 1
},
"navigationRole": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"documentationUrl": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
}
},
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"$ref": "#/$defs/toolDescriptor"
}
},
"counts": {
"type": "object",
"required": [
"raw",
"agentReady",
"legacy",
"hidden"
],
"properties": {
"raw": {
"type": "integer",
"minimum": 0
},
"hidden": {
"type": "integer",
"minimum": 0
},
"legacy": {
"type": "integer",
"minimum": 0
},
"agentReady": {
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false
},
"buildSha": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "ffmpeg"
},
"schemaVersion": {
"const": "1.0.0"
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
}
},
"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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}'
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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}),
});
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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
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.list_capabilities 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."
}