Skip to main content

Get Team Usage Statistic

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READmanus.get_team_usage_statistic
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: manus-2026.07.12.2
  • Descriptor hash: 555e19b63fd0da94f43e61a621f364c1b0914ebbff4281a96bea20252168d833

Use this Manus read tool when you need to read team daily credit totals if the byok account has team access. It contacts the configured Manus API v2 GET /v2/usage.teamStatistic endpoint and requires a request-scoped x-manus-api-key. Team-only daily credit totals. 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-team-usage-statistic-example",
"method": "tools/call",
"params": {
"name": "manus.get_team_usage_statistic",
"arguments": {
"end_date": "",
"start_date": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"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."
}
},
"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-team-usage-statistic-example",
"method": "tools/call",
"params": {
"name": "manus.get_team_usage_statistic",
"arguments": {
"end_date": "",
"start_date": ""
}
}
}'

Example Responses

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