get_comment
Retrieve specific comment details by ID, including content and metadata, for reference or quoting purposes. Optionally include anchor text from the document the comment refers to.
Instructions
    Retrieves a specific comment by its ID.
    
    Use this tool when you need to:
    - View details of a specific comment
    - Reference or quote a particular comment
    - Check comment content and metadata
    - Find a comment mentioned elsewhere
    
    Args:
        comment_id: The comment ID to retrieve
        include_anchor_text: Whether to include the document text that 
            the comment refers to
        
    Returns:
        Formatted string with the comment content and metadata
    
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| comment_id | Yes | ||
| include_anchor_text | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "comment_id": {
      "title": "Comment Id",
      "type": "string"
    },
    "include_anchor_text": {
      "default": false,
      "title": "Include Anchor Text",
      "type": "boolean"
    }
  },
  "required": [
    "comment_id"
  ],
  "title": "get_commentArguments",
  "type": "object"
}