Skip to main content
Returns all comments pinned to a mockup, including position data and replies. Requires: read permission

Parameters

ParameterTypeRequiredDescription
mockup_idstringMockup 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
}