Skip to main content

List Task Messages

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.list_task_messages
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 2212b669908f5aa69826acffa5429bdf40a9e5d06bbf25def7b5c55b697459a0

Use this Manus read tool when you need to poll manus task events in compact form; use for async status and results. It contacts the configured Manus API v2 GET /v2/task.listMessages endpoint and requires a request-scoped x-manus-api-key. Polls event stream; check_task_progress wraps it for compact status. This is read-only and does not change remote state. The result is a compact, secret-redacted object and never includes the Portal grant or provider credential.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-list-task-messages-example",
"method": "tools/call",
"params": {
"name": "manus.list_task_messages",
"arguments": {
"task_id": "task_id_123",
"limit": 1,
"order": "asc",
"cursor": "",
"verbose": false,
"slides_format": "html",
"max_content_chars": 1,
"include_attachment_urls": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"task_id"
],
"properties": {
"limit": {
"type": "integer",
"default": 10,
"description": "Maximum number of records or ranked matches to return within the tool's documented bound."
},
"order": {
"enum": [
"asc",
"desc"
],
"type": "string",
"default": "desc",
"description": "Cursor pagination order, either ascending or descending."
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Opaque pagination cursor returned by the preceding Manus list response."
},
"task_id": {
"type": "string",
"description": "Stable Manus task identifier returned by create_task or a task-list response."
},
"verbose": {
"type": "boolean",
"default": false,
"description": "Whether Manus should include verbose provider event details in the message response."
},
"slides_format": {
"enum": [
"html",
"pptx"
],
"type": "string",
"default": "html",
"description": "Requested representation for slide attachments in task messages."
},
"max_content_chars": {
"type": "integer",
"default": 1600,
"description": "Maximum characters retained for each compact message body before truncation metadata."
},
"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-list-task-messages-example",
"method": "tools/call",
"params": {
"name": "manus.list_task_messages",
"arguments": {
"task_id": "task_id_123",
"limit": 1,
"order": "asc",
"cursor": "",
"verbose": false,
"slides_format": "html",
"max_content_chars": 1,
"include_attachment_urls": false
}
}
}'

Example Responses

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