Skip to main content

Get Agent Detail

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Use this Manus read tool when you need to read details for a manus custom agent. It contacts the configured Manus API v2 GET /v2/agent.detail endpoint and requires a request-scoped x-manus-api-key. Reads agent metadata. 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-get-agent-detail-example",
"method": "tools/call",
"params": {
"name": "manus.get_agent_detail",
"arguments": {
"agent_id": "agent_id_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"agent_id"
],
"properties": {
"agent_id": {
"type": "string",
"description": "Stable Manus custom-agent identifier returned by list_agents."
}
},
"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-agent-detail-example",
"method": "tools/call",
"params": {
"name": "manus.get_agent_detail",
"arguments": {
"agent_id": "agent_id_123"
}
}
}'

Example Responses

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