Skip to main content

Check Manus task progress

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.check_task_progress
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: a4ddccc8396d953287515bafb31127c0d7437d0f34fb3206cad4ff672c4457ce

Use this read-only polling helper after creating or continuing a Manus task. It contacts the configured Manus task message endpoint with the request-scoped x-manus-api-key and returns a compact status, waiting-event guidance, latest result summary, and recommended check-back time. It does not modify the task and redacts provider secrets.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-check-task-progress-example",
"method": "tools/call",
"params": {
"name": "manus.check_task_progress",
"arguments": {
"task_id": "task_id_123",
"include_attachment_urls": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"task_id"
],
"properties": {
"task_id": {
"type": "string",
"description": "Stable Manus task identifier returned by create_task or a task-list response."
},
"include_attachment_urls": {
"type": "boolean",
"default": false,
"description": "Whether compact task results may include provider attachment URLs."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"description": "Bounded provider or local result data."
},
"error": {
"description": "Secret-safe provider or validation error details."
},
"dry_run": {
"type": "boolean",
"description": "Whether the result is an execution preview rather than a provider mutation."
},
"message": {
"type": "string",
"description": "Human-readable status or recovery guidance."
},
"http_status": {
"type": "integer",
"description": "Manus provider HTTP status when an external endpoint was contacted."
},
"next_action": {
"type": "string",
"description": "Recommended next agent action when another step is useful."
},
"confirmation_required": {
"type": "boolean",
"description": "Whether approval is required before a write can execute."
}
},
"description": "Secret-safe Manus MCP operation result.",
"additionalProperties": true
}

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": "manus-check-task-progress-example",
"method": "tools/call",
"params": {
"name": "manus.check_task_progress",
"arguments": {
"task_id": "task_id_123",
"include_attachment_urls": false
}
}
}'

Example Responses

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