Skip to main content

Stop Task

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEmanus.stop_task
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: f71a0a54172c6d6ffe0d6e970f425676613dd082d82951a9bb312ce8add77271

Use this Manus destructive tool when you need to stop a running manus task. the task can be resumed with send_task_message. It contacts the configured Manus API v2 POST /v2/task.stop endpoint and requires a request-scoped x-manus-api-key. Stops running task; resumable by send_task_message; 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-stop-task-example",
"method": "tools/call",
"params": {
"name": "manus.stop_task",
"arguments": {
"task_id": "task_id_123",
"confirm": false,
"dry_run": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"task_id"
],
"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."
},
"task_id": {
"type": "string",
"description": "Stable Manus task identifier returned by create_task or a task-list response."
}
},
"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-stop-task-example",
"method": "tools/call",
"params": {
"name": "manus.stop_task",
"arguments": {
"task_id": "task_id_123",
"confirm": false,
"dry_run": false
}
}
}'

Example Responses

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