get_thread
Fetch a Reddit thread and its comments from any URL or post ID. Returns a markdown tree with indented replies; collapsed branches show the number of additional replies.
Instructions
Read a reddit post and its comment tree from any reddit URL or id.
The primary tool: give it whatever the user pasted. Comments come back as an
indented markdown tree; collapsed branches show as [+N more replies].
Caveat: Arctic Shift archives posts the moment they appear and backfills vote data after ~36h, so score and num_comments on anything newer than that are placeholders (usually 1 and 0) - never report them as real counts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Return the raw Arctic Shift JSON instead of markdown. | |
| sort_top | No | Order comments by score instead of reddit's tree order. | |
| max_chars | No | Character budget for the rendered output. | |
| parent_id | No | Comment id to focus on; only that subtree is returned. | |
| url_or_id | Yes | A reddit thread URL, share link, redd.it link, or post/comment id (bare or t3_/t1_ prefixed). | |
| comment_limit | No | Max comments to fetch, 0-25000. Use 0 for post metadata only. |