Skip to main content

Inspect Manus endpoint coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.get_endpoint_coverage
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: dfe7e2328ebfd460ab43df300ff8c25887ff88903c7fd319b795138b239e5a14

Use this local read-only navigation tool to map official Manus API v2 endpoints to native tools, methods, provider documentation, risk classes, and implementation status. Filter by capability area or status when auditing a workflow. It never contacts Manus, changes state, or returns credential values.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "manus.get_endpoint_coverage",
"arguments": {
"area": "",
"status": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"area": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact Manus API capability area used to filter endpoint coverage."
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact implementation status used to filter endpoint coverage."
}
},
"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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "manus.get_endpoint_coverage",
"arguments": {
"area": "",
"status": ""
}
}
}'

Example Responses

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