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

> List all mockups (design files) in the current project.

Returns up to 50 mockups in the active project, with comment counts and file URLs.

**Requires:** `read` permission

## URI

```
surefeedback://mockups
```

## Reading via JSON-RPC

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://mockups"
  }
}
```

## Response

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

## Notes

* Returns up to 50 most recent mockups, ordered by `created_at` descending
* To search by name, use the [`search-mockups`](/mcp/tools/search-mockups) tool
* To get all comments on a specific mockup, use [`surefeedback://mockups/{id}`](/mcp/resources/mockup) or the [`get-mockup-comments`](/mcp/tools/get-mockup-comments) tool
