Get Endpoint Coverage
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:
db24a6217a5d892f6b95c5fba532e556b122f107d0554404f0410f42ec1b6920
Use this to map supported FFmpeg capability areas to native MCP tools and their contract tiers. FFmpeg is a local command-line provider rather than an HTTP API, so this reports capability coverage instead of REST endpoints.
Request Body
{
"jsonrpc": "2.0",
"id": "ffmpeg-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_endpoint_coverage",
"arguments": {
"category": "",
"tool_name": ""
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Optional exact manifest category filter."
},
"tool_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Native tool name or exact compatibility alias to describe."
}
},
"additionalProperties": false
}
Output Schema
{
"type": "object",
"required": [
"serviceId",
"providerKind",
"source",
"entries"
],
"properties": {
"source": {
"type": "string",
"description": "Authoritative FFmpeg documentation URL."
},
"entries": {
"type": "array",
"items": {
"type": "object",
"required": [
"capability",
"nativeToolName",
"title",
"tier",
"status",
"providerInterface",
"documentationUrl"
],
"properties": {
"tier": {
"type": "string",
"description": "Contract tier."
},
"title": {
"type": "string",
"description": "Human-readable tool title."
},
"status": {
"type": "string",
"description": "Coverage disposition."
},
"capability": {
"type": "string",
"description": "Manifest capability category."
},
"nativeToolName": {
"type": "string",
"description": "Native FFmpeg MCP tool name."
},
"documentationUrl": {
"type": "string",
"description": "Tool documentation URL."
},
"providerInterface": {
"type": "string",
"description": "Underlying provider interface."
}
},
"additionalProperties": false
},
"description": "Filtered capability-to-tool coverage entries."
},
"serviceId": {
"type": "string",
"description": "Canonical provider service ID."
},
"providerKind": {
"type": "string",
"description": "Provider interface type."
}
},
"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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_endpoint_coverage",
"arguments": {
"category": "",
"tool_name": ""
}
}
}'
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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_endpoint_coverage",
"arguments": {
"category": "",
"tool_name": ""
}
}
}),
});
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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_endpoint_coverage",
"arguments": {
"category": "",
"tool_name": ""
}
}
}
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.get_endpoint_coverage 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."
}