Skip to main content
Returns all mockups in the active project, with optional name search. Requires: read permission

Parameters

ParameterTypeDescription
searchstringSearch by mockup name (partial match)

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search-mockups",
    "arguments": {}
  }
}

Response

{
  "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"
    }
  ]
}