Skip to main content

Tasks Daily Summary By Assignee

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READghl.tasks_daily_summary_by_assignee
  • Contract tier: legacy
  • Risk: read
  • Catalog version: 2026-07-12.2
  • Descriptor hash: d3495baeb861b6eccaac6188e753701722e12985157f1adb350b39f6c4042076

Generate a daily task summary grouped by assignee. GHL category: Automation. This is a read-only GHL API operation.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-tasks-daily-summary-by-assignee-example",
"method": "tools/call",
"params": {
"name": "ghl.tasks_daily_summary_by_assignee",
"arguments": {
"date": "date_example",
"limit": 1,
"maxTasks": 1,
"tenantId": "tenantId_123",
"timeZone": "timeZone_example",
"locationId": "locationId_123",
"strictTenant": false,
"includeCompleted": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [],
"properties": {
"date": {
"type": "string",
"description": "Target date (YYYY-MM-DD). Defaults to today."
},
"limit": {
"type": "number",
"default": 100,
"description": "Page size for task search (max 100)."
},
"maxTasks": {
"type": "number",
"default": 500,
"description": "Maximum tasks to include."
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"timeZone": {
"type": "string",
"description": "IANA timezone (defaults to location timezone or UTC)."
},
"locationId": {
"type": "string",
"description": "Optional. Defaults to the authenticated runtime location; if supplied, it must match that location."
},
"strictTenant": {
"type": "boolean",
"default": true,
"description": "Require tenantId to match locationId routing (default: true)."
},
"includeCompleted": {
"type": "boolean",
"default": false,
"description": "Include completed tasks."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the GHL MCP operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Tool-specific GHL or local navigation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe execution, routing, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe error details when ok is false; credential values are never returned."
}
},
"description": "Normalized GHL MCP response envelope.",
"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": "ghl-tasks-daily-summary-by-assignee-example",
"method": "tools/call",
"params": {
"name": "ghl.tasks_daily_summary_by_assignee",
"arguments": {
"date": "date_example",
"limit": 1,
"maxTasks": 1,
"tenantId": "tenantId_123",
"timeZone": "timeZone_example",
"locationId": "locationId_123",
"strictTenant": false,
"includeCompleted": false
}
}
}'

Example Responses

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