GovTribe

Show stats display MCP response

MCP tool response returned by the Show stats display MCP tool.

Response Shape

The response echoes the validated stats-display payload used to render KPI summary cards.

FieldTypeNotes
idstringCaller-provided stats-display identifier.
titlestring or nullOptional display title.
statsobject arrayKPI cards. Each stat has key, label, and value; optional fields include format, diff, and sparkline.
Other validated fieldsmixedOther 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]
      }
    }
  ]
}