Skip to main content

Create Webhook

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEmanus.create_webhook
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 270b3b8e0f1d56d67b9ae174a473825fd3184c92985418123588c89b0080aa68

Use this Manus write tool when you need to register a manus webhook callback url. requires confirmation. It contacts the configured Manus API v2 POST /v2/webhook.create endpoint and requires a request-scoped x-manus-api-key. Registers callback URL; 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-create-webhook-example",
"method": "tools/call",
"params": {
"name": "manus.create_webhook",
"arguments": {
"url": "https://example.com/resource",
"confirm": false,
"dry_run": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Public HTTPS callback URL that Manus will invoke for webhook events."
},
"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."
}
},
"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-create-webhook-example",
"method": "tools/call",
"params": {
"name": "manus.create_webhook",
"arguments": {
"url": "https://example.com/resource",
"confirm": false,
"dry_run": false
}
}
}'

Example Responses

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