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

# search-mockups

> List and search mockups in the active project.

Returns all mockups in the active project, with optional name search.

**Requires:** `read` permission

## Parameters

| Parameter | Type   | Description                           |
| --------- | ------ | ------------------------------------- |
| `search`  | string | Search by mockup name (partial match) |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search-mockups",
    "arguments": {}
  }
}
```

## Response

```json theme={null}
{
  "project": { "id": "...", "name": "My Project" },
  "total": 3,
  "mockups": [
    {
      "id": "...",
      "name": "Homepage v2",
      "file_url": "https://cdn.surefeedback.com/mockups/...",
      "comment_count": 8,
      "created_at": "2026-02-01T00:00:00Z"
    }
  ]
}
```
