Skip to main content

Get File Detail

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Use this Manus read tool when you need to read manus file upload status, size, content type, and expiration. It contacts the configured Manus API v2 GET /v2/file.detail endpoint and requires a request-scoped x-manus-api-key. Reads file status, size, and expiry. 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-file-detail-example",
"method": "tools/call",
"params": {
"name": "manus.get_file_detail",
"arguments": {
"file_id": "file_id_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"file_id"
],
"properties": {
"file_id": {
"type": "string",
"description": "Stable Manus file identifier returned by create_file_upload or another Manus response."
}
},
"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-file-detail-example",
"method": "tools/call",
"params": {
"name": "manus.get_file_detail",
"arguments": {
"file_id": "file_id_123"
}
}
}'

Example Responses

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