MCP Tool: get_comment_threads

Retrieves threaded comment conversations for a parent comment. Useful for viewing organized discussions and reply chains.

Example Prompt

Get comment threads for comment S5Q6R01K1052NAMN8YGYHYGKZG082

Input Parameters

NameTypeRequiredDescription
commentIdstringYesThe ID of the parent comment to get threads for
pagenumberNoThe page number for pagination (default: 0)
limitnumberNoMaximum number of thread comments to return (default: 10)

Response Fields

Below are the fields you may see in each comment thread object in the response:
FieldTypeDescription
idstringComment unique ID
contentstringPlain text content of the comment
contentHtmlstringHTML formatted content
contentMarkdownstringMarkdown formatted content
contentJsonstringJSON formatted content for rich text
isEditedbooleanWhether the comment has been edited
threadNamestringName of the comment thread
commentVisibilitystringVisibility setting (public or private)
commentTypestringType of comment (note, reply, comment, etc.)
isPinnedbooleanWhether the comment is pinned
sourceEmailIdstringEmail ID if comment came from email
metadataobjectAdditional metadata including mentions and userReactions
createdAtstring (ISO8601)Creation timestamp
updatedAtstring (ISO8601)Last update timestamp
authorstringAuthor display name
authorAvatarUrlstringAuthor’s avatar URL
attachmentsarrayArray of attachment IDs
authorIdstringAuthor’s user ID
authorUserTypestringAuthor’s user type (e.g., ORG_ADMIN)
impersonatedUserEmailstringEmail of impersonated user
impersonatedUserNamestringName of impersonated user
impersonatedUserAvatarstringAvatar of impersonated user
deletedAtstringDeletion timestamp (null if not deleted)

Sample Response

{
  "data": [
    {
      "id": "X66KS01K10E5FVTJK7ZVRW3AKVYDD",
      "content": "this is a reply",
      "contentHtml": "<p>this is a reply</p>",
      "contentMarkdown": "this is a reply",
      "contentJson": "\"{\\"type\\":\\"doc\\",\\"content\\":[{\\"type\\":\\"paragraph\\",\\"attrs\\":{\\"textAlign\\":\\"left\\"},\\"content\\":[{\\"type\\":\\"text\\",\\"text\\":\\"this is a reply\\"}]}]}\"",
      "isEdited": false,
      "threadName": null,
      "commentVisibility": "public",
      "commentType": "comment",
      "isPinned": false,
      "sourceEmailId": null,
      "metadata": {
        "mentions": [],
        "userReactions": []
      },
      "createdAt": "2025-07-25T12:40:41.944Z",
      "updatedAt": "2025-07-25T12:40:41.941Z",
      "author": "shakthi+1",
      "authorAvatarUrl": null,
      "attachments": [],
      "authorId": "UTH00SEXXFNVVN",
      "authorUserType": "ORG_ADMIN",
      "impersonatedUserEmail": null,
      "impersonatedUserName": null,
      "impersonatedUserAvatar": null,
      "deletedAt": null
    }
  ],
  "status": true,
  "message": "Comment threads fetched successfully!",
  "timestamp": "2025-07-25T12:43:27.398Z"
}