Skip to main content
Returns an overview of all feedback in the active project: total counts, breakdowns by status/priority/site, urgent open items, unassigned count, and recent activity. Requires: read permission

Parameters

ParameterTypeDescription
site_idstringScope the summary to a single site (optional)
include_recentintegerHow many recent comments to include in full (default: 5, max: 20)

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "summarize-feedback",
    "arguments": {
      "include_recent": 5
    }
  }
}

Response

{
  "project": { "id": "...", "name": "My Project" },
  "total": 47,
  "overview": {
    "open_and_in_progress": 18,
    "resolved": 24,
    "closed": 5,
    "urgent_open": 3,
    "high_priority_open": 7,
    "unassigned_open": 11
  },
  "by_status": {
    "RESOLVED": 24,
    "OPEN": 15,
    "IN_PROGRESS": 3,
    "CLOSED": 5
  },
  "by_priority": {
    "MEDIUM": 22,
    "HIGH": 14,
    "LOW": 8,
    "URGENT": 3
  },
  "by_site": [
    { "name": "Marketing Site", "url": "example.com", "count": 31 },
    { "name": "App", "url": "app.example.com", "count": 16 }
  ],
  "recent_feedback": [
    {
      "id": "...",
      "task_key": "SSL-047",
      "content": "Footer links are broken",
      "status": "OPEN",
      "priority": "HIGH",
      "site": { "name": "Marketing Site", "url": "example.com" },
      "created_at": "2026-03-05T09:00:00Z"
    }
  ]
}

Example prompts

  • “Summarize all feedback for this project”
  • “Give me an overview of the current feedback status”
  • “How many open issues do we have?”
  • “What’s the feedback breakdown for the marketing site?”