Skip to main content

Job Progress

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READffmpeg.job_progress
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.3
  • Descriptor hash: 8427ac0eee068bc76e115b42bc0b74aca1b2f2e6fb4d162a858e30f5d329cbd1

Use this for a compact progress and phase readback for a previously returned job ID. It is read-only and does not retry the job.

Request Body

{
"jsonrpc": "2.0",
"id": "ffmpeg-job-progress-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.job_progress",
"arguments": {
"job_id": "job_id_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"job_id"
],
"properties": {
"job_id": {
"type": "string",
"description": "Stable processing job ID returned by an FFmpeg operation."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"job_id",
"status"
],
"properties": {
"phase": {
"type": "string",
"description": "Current bounded processing phase when known."
},
"job_id": {
"type": "string",
"description": "Requested job ID."
},
"status": {
"type": "string",
"description": "Provider job status."
},
"progress_pct": {
"type": "integer",
"description": "Progress percent when known."
}
},
"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-job-progress-example",
"method": "tools/call",
"params": {
"name": "ffmpeg.job_progress",
"arguments": {
"job_id": "job_id_123"
}
}
}'

Example Responses

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