Use the fetch_reddit_post_content tool to retrieve the full details of a specific Reddit post, including its body/link and a formatted tree of comments.
Arguments:
post_id (str): The unique Reddit post ID.comment_limit (int, default: 20): The number of top-level comments to fetch.comment_depth (int, default: 3): The maximum depth of the comment tree to traverse.
Returns:
A human-readable string containing the post's title, score, author, type, content, and a nested list of comments with their authors, scores, and bodies.
# Example tool call via MCP
await fetch_reddit_post_content(post_id="1abcde", comment_limit=10, comment_depth=2)