Skip to main content

Get Tool Usage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.get_tool_usage
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 9fe665c3a3ec866655c78058d623d38a6a6501450f7ac0b2fd959895b4beb8d2

Use this after discovery to retrieve one tool's complete descriptor, input and output schemas, safety annotations, aliases, and confirmation rule. It does not execute the selected tool.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-get-tool-usage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"tool_name"
],
"properties": {
"tool_name": {
"type": "string",
"description": "Native tool name or exact compatibility alias to describe."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"tool"
],
"properties": {
"tool": {
"type": "object",
"description": "Complete lossless ToolManifest descriptor.",
"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-get-tool-usage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}'

Example Responses

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