Skip to main content

List Online Browsers

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.list_online_browsers
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 8223ecba684aa8a6de512d8ec939e4fae4193ca5012e9c02706e8a0a2aba8193

Use this Manus read tool when you need to list online manus browser clients; user-agent is redacted by default. It contacts the configured Manus API v2 GET /v2/browser.onlineList endpoint and requires a request-scoped x-manus-api-key. Lists online browser clients; user-agent redacted by default. 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-online-browsers-example",
"method": "tools/call",
"params": {
"name": "manus.list_online_browsers",
"arguments": {
"include_user_agent": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"include_user_agent": {
"type": "boolean",
"default": false,
"description": "Whether browser rows may include their raw user-agent string instead of safe redaction."
}
},
"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-online-browsers-example",
"method": "tools/call",
"params": {
"name": "manus.list_online_browsers",
"arguments": {
"include_user_agent": false
}
}
}'

Example Responses

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