> ## 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.

# get-mockup-comments

> Get all feedback comments on a specific mockup.

Returns all comments pinned to a mockup, including position data and replies.

**Requires:** `read` permission

## Parameters

| Parameter   | Type   | Required | Description |
| ----------- | ------ | -------- | ----------- |
| `mockup_id` | string | ✓        | Mockup UUID |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get-mockup-comments",
    "arguments": {
      "mockup_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    }
  }
}
```

## Response

```json theme={null}
{
  "mockup": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Homepage v2"
  },
  "comments": [
    {
      "id": "...",
      "task_key": "SSL-051",
      "content": "The hero image needs more contrast",
      "status": "OPEN",
      "priority": "MEDIUM",
      "author": { "id": "...", "name": "Jane Smith", "email": "jane@example.com" },
      "created_at": "2026-03-01T10:00:00Z"
    }
  ],
  "total": 8
}
```
