Skip to main content

Get Endpoint Coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.get_endpoint_coverage
  • 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 -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": ""
}
}
}'

Example Responses

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