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.
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
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get-mockup-comments",
"arguments": {
"mockup_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}
Response
{
"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": "[email protected]" },
"created_at": "2026-03-01T10:00:00Z"
}
],
"total": 8
}