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

> Get a single mockup by UUID with comment statistics.

Returns full details for one mockup, including total and open comment counts, approval status, and file URL.

**Requires:** `read` permission

## URI Template

```
surefeedback://mockups/{id}
```

| Variable | Description |
| -------- | ----------- |
| `id`     | Mockup UUID |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://mockups/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  }
}
```

## Response

```json theme={null}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Homepage v2",
  "is_approved": false,
  "is_active": true,
  "version": 2,
  "file_url": "https://cdn.surefeedback.com/mockups/homepage-v2.png",
  "comments_count": 8,
  "open_comments_count": 5,
  "created_at": "2026-02-01T00:00:00Z",
  "updated_at": "2026-03-01T00:00:00Z"
}
```

## Notes

* Returns an error if the mockup does not belong to the current project
* `open_comments_count` counts unresolved comments on this mockup
* To fetch all comments with content, use the [`get-mockup-comments`](/mcp/tools/get-mockup-comments) tool
