> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# surefeedback://comments

> List all feedback comments in the current project.

Returns the latest 50 feedback comments across all sites in the active project.

**Requires:** `read` permission

## URI

```
surefeedback://comments
```

## Response

```json theme={null}
{
  "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": "jane@example.com" },
      "created_at": "2026-03-01T10:00:00Z"
    }
  ]
}
```

## Reading via JSON-RPC

```json theme={null}
{
  "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`](/mcp/tools/search-comments) tool instead
* To fetch a single comment with full details and replies, use [`surefeedback://comments/{id}`](/mcp/resources/comment)
