Skip to main content

Send Task Message

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEmanus.send_task_message
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 6a7d9efd16961dac6c79efdf4457298183089d1f912c49a1771f3d7e5c6dce5a

Use this Manus spend tool when you need to send a follow-up or answer a manus messageaskuser waiting event. It contacts the configured Manus API v2 POST /v2/task.sendMessage endpoint and requires a request-scoped x-manus-api-key. Resumes/continues a task; dry-run and confirm required. It is dry-run by default and requires confirm=true after approval before the provider write executes. The result is a compact, secret-redacted object and never includes the Portal grant or provider credential.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-send-task-message-example",
"method": "tools/call",
"params": {
"name": "manus.send_task_message",
"arguments": {
"task_id": "task_id_123",
"message": "message_example",
"confirm": false,
"dry_run": false,
"file_ids": "",
"file_urls": "",
"connectors": "",
"force_skills": "",
"agent_profile": "",
"content_parts": ""
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"task_id",
"message"
],
"properties": {
"confirm": {
"type": "boolean",
"default": false,
"description": "Set true only after reviewing the dry-run plan and obtaining required approval."
},
"dry_run": {
"type": "boolean",
"default": true,
"description": "Keep true to return a secret-safe execution preview without contacting the write endpoint."
},
"message": {
"type": "string",
"description": "User-approved task instruction or follow-up text sent to Manus."
},
"task_id": {
"type": "string",
"description": "Stable Manus task identifier returned by create_task or a task-list response."
},
"file_ids": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Existing Manus file identifiers to attach to the task message."
},
"file_urls": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Publicly reachable file URLs for Manus to attach to the task message."
},
"connectors": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Manus connector identifiers returned by list_connectors and attached to the task message."
},
"force_skills": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Manus skill identifiers the task must invoke rather than selecting opportunistically."
},
"agent_profile": {
"anyOf": [
{
"enum": [
"manus-1.6",
"manus-1.6-lite",
"manus-1.6-max"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Manus model profile used to execute or continue the asynchronous task."
},
"content_parts": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"default": null,
"description": "Advanced Manus message content objects following the provider message-content schema."
},
"enable_skills": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Manus skill identifiers the task may use when useful."
}
},
"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-send-task-message-example",
"method": "tools/call",
"params": {
"name": "manus.send_task_message",
"arguments": {
"task_id": "task_id_123",
"message": "message_example",
"confirm": false,
"dry_run": false,
"file_ids": "",
"file_urls": "",
"connectors": "",
"force_skills": "",
"agent_profile": "",
"content_parts": ""
}
}
}'

Example Responses

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