> ## 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/{id}

> Get a single feedback comment by UUID, including replies and full metadata.

Returns complete details for one comment, including all replies, position data, tags, and author info.

**Requires:** `read` permission

## URI Template

```
surefeedback://comments/{id}
```

| Variable | Description  |
| -------- | ------------ |
| `id`     | Comment UUID |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://comments/550e8400-e29b-41d4-a716-446655440000"
  }
}
```

## Response

```json theme={null}
{
  "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",
  "type": "bug",
  "category": "visual",
  "tags": ["accessibility", "hero"],
  "site": { "id": "...", "name": "Marketing Site", "url": "example.com" },
  "author": { "id": "...", "name": "Jane Smith", "email": "jane@example.com" },
  "replies": [
    {
      "id": "...",
      "content": "I'll increase the contrast ratio to 4.5:1",
      "author": { "id": "...", "name": "Bob Dev" },
      "created_at": "2026-03-02T09:00:00Z"
    }
  ],
  "created_at": "2026-03-01T10:00:00Z",
  "updated_at": "2026-03-02T09:00:00Z"
}
```

## Notes

* Returns a 404-style error if the comment does not exist in the current project
* Use the [`get-comment`](/mcp/tools/get-comment) tool as an alternative — it accepts either a UUID or a task key (e.g. `SSL-051`)
