paperclip_get_comment
Fetch a specific comment by its ID and issue ID. Use to read the comment that triggered a wake event, such as an @-mention notification.
Instructions
Fetch a single comment by ID, typically the triggering comment from a wake event.
Args:
issueId: string — Issue ID or identifier (example: "PAP-42")
commentId: string — Comment UUID (example: "cmt_abc123")
Returns: Returns the comment object: id, body, authorId, authorType, createdAt.
Examples:
Use when: PAPERCLIP_WAKE_COMMENT_ID is set — read the exact comment that triggered the @-mention wake
Don't use when: you need all comments on an issue — use paperclip_list_comments instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: comment or issue not found → verify both issueId and commentId
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueId | Yes | Issue ID or identifier (e.g. PAP-21) | |
| commentId | Yes | Comment UUID to fetch |