get_post_content
Retrieve post content, top-level comments, and nested replies from Reddit using a post ID. Specify comment depth and limit for tailored results with the MCP Server Reddit integration.
Instructions
Get detailed content of a specific post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_depth | No | Maximum depth of comment tree (default: 3) | |
comment_limit | No | Number of top-level comments to return (default: 10) | |
post_id | Yes | ID of the post |
Input Schema (JSON Schema)
{
"properties": {
"comment_depth": {
"default": 3,
"description": "Maximum depth of comment tree (default: 3)",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"comment_limit": {
"default": 10,
"description": "Number of top-level comments to return (default: 10)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"post_id": {
"description": "ID of the post",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}