Show stats display MCP response
MCP tool response returned by the Show stats display MCP tool.
- Returned by: Show stats display MCP tool
- Response type: Structured app payload
Response Shape
The response echoes the validated stats-display payload used to render KPI summary cards.
| Field | Type | Notes |
|---|---|---|
id | string | Caller-provided stats-display identifier. |
title | string or null | Optional display title. |
stats | object array | KPI cards. Each stat has key, label, and value; optional fields include format, diff, and sparkline. |
| Other validated fields | mixed | Other accepted display options from the live tool schema. |
Example
{
"id": "pipeline-summary",
"title": "Pipeline summary",
"stats": [
{
"key": "pipeline",
"label": "Pipeline Value",
"value": 42500000,
"format": {
"kind": "currency",
"currency": "USD",
"compact": true
},
"sparkline": {
"data": [31, 34, 36, 39, 42]
}
}
]
}