Get Tool Usage
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:
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
- 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-tool-usage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}'
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-tool-usage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}),
});
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-tool-usage-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}
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_tool_usage 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."
}