Skip to main content

List Manus capabilities and descriptors

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.list_capabilities
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 615f2a6826cc7d55c7e52ca7c7fedc85e98d146d1056bba0a26e6e4037d26f45

Use this local read-only navigation tool to inspect the deterministic Manus ToolManifest. The compact default returns immutable catalog identity and raw, agent-ready, legacy, and hidden counts; set include_descriptors=true for all 38 lossless descriptors, complete input and output schemas, aliases, risk annotations, confirmation rules, build SHA, and hashes. It never contacts Manus or reveals credential values.

Request Body

{
"jsonrpc": "2.0",
"id": "manus-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "manus.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"include_descriptors": {
"type": "boolean",
"default": false,
"description": "When true, return all 38 complete ordered descriptors for Portal catalog ingestion."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local catalog read completed successfully."
},
"tools": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Complete descriptors when requested, otherwise an empty array."
},
"counts": {
"type": "object",
"description": "Raw, agent-ready, legacy, and hidden descriptor counts.",
"additionalProperties": {
"type": "integer"
}
},
"buildSha": {
"type": "string",
"description": "Source revision used to build the running Manus image."
},
"serviceId": {
"type": "string",
"description": "Canonical Portal registry service identifier."
},
"schemaVersion": {
"type": "string",
"description": "Version of the shared ToolManifest wire contract."
},
"catalogVersion": {
"type": "string",
"description": "Immutable Manus catalog version identifier."
},
"descriptorHash": {
"type": "string",
"description": "SHA-256 digest of all ordered descriptors including their hashes."
}
},
"description": "Complete versioned provider-owned Manus ToolManifest.",
"additionalProperties": false
}

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-capabilities-example",
"method": "tools/call",
"params": {
"name": "manus.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}'

Example Responses

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