Skip to main content
Returns the latest 50 feedback comments across all sites in the active project. Requires: read permission

URI

surefeedback://comments

Response

{
  "project": { "id": "...", "name": "My Project" },
  "total": 50,
  "comments": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "task_key": "SSL-051",
      "content": "The hero image needs more contrast",
      "status": "OPEN",
      "priority": "HIGH",
      "is_resolved": false,
      "page_url": "https://example.com/",
      "page_title": "Home",
      "site": { "id": "...", "name": "Marketing Site", "url": "example.com" },
      "author": { "id": "...", "name": "Jane Smith", "email": "[email protected]" },
      "created_at": "2026-03-01T10:00:00Z"
    }
  ]
}

Reading via JSON-RPC

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://comments"
  }
}

Notes

  • Returns up to 50 most recent comments, ordered by created_at descending
  • To search or filter comments, use the search-comments tool instead
  • To fetch a single comment with full details and replies, use surefeedback://comments/{id}