List Team Usage Log
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- Contract tier:
agent_ready - Risk:
read - Catalog version:
manus-2026.07.12.2 - Descriptor hash:
3eeeea322290f2976608ea76beadffefc5e38b5c3c057d27d9672cb11aa64736
Use this Manus read tool when you need to read team member usage; emails are redacted unless include_emails is true. It contacts the configured Manus API v2 GET /v2/usage.teamLog endpoint and requires a request-scoped x-manus-api-key. Team-only per-member usage; emails 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-team-usage-log-example",
"method": "tools/call",
"params": {
"name": "manus.list_team_usage_log",
"arguments": {
"limit": 1,
"cursor": "",
"is_asc": false,
"sort_by": "task_count",
"end_date": "",
"start_date": "",
"include_emails": false
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"default": 20,
"description": "Maximum number of records or ranked matches to return within the tool's documented bound."
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Opaque pagination cursor returned by the preceding Manus list response."
},
"is_asc": {
"type": "boolean",
"default": false,
"description": "Whether team usage rows are sorted ascending instead of descending."
},
"sort_by": {
"enum": [
"task_count",
"credits"
],
"type": "string",
"default": "task_count",
"description": "Team usage sort field: task_count or credits."
},
"end_date": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional inclusive Unix timestamp ending the requested usage reporting window."
},
"start_date": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional inclusive Unix timestamp beginning the requested usage reporting window."
},
"include_emails": {
"type": "boolean",
"default": false,
"description": "Whether team usage rows may include member email addresses 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
- Node.js
- Python
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-team-usage-log-example",
"method": "tools/call",
"params": {
"name": "manus.list_team_usage_log",
"arguments": {
"limit": 1,
"cursor": "",
"is_asc": false,
"sort_by": "task_count",
"end_date": "",
"start_date": "",
"include_emails": false
}
}
}'
const response = await fetch('https://portal.madpanda3d.com/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"jsonrpc": "2.0",
"id": "manus-list-team-usage-log-example",
"method": "tools/call",
"params": {
"name": "manus.list_team_usage_log",
"arguments": {
"limit": 1,
"cursor": "",
"is_asc": false,
"sort_by": "task_count",
"end_date": "",
"start_date": "",
"include_emails": false
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://portal.madpanda3d.com/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"jsonrpc": "2.0",
"id": "manus-list-team-usage-log-example",
"method": "tools/call",
"params": {
"name": "manus.list_team_usage_log",
"arguments": {
"limit": 1,
"cursor": "",
"is_asc": false,
"sort_by": "task_count",
"end_date": "",
"start_date": "",
"include_emails": false
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 502 Upstream Error
{
"ok": true,
"message": "Tool manus.list_team_usage_log executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}
{
"ok": false,
"classification": "upstream_http_error",
"message": "Upstream MCP returned a non-success status."
}