MCP Server Reddit

get_post_content

Get detailed content of a specific post

Input Schema

NameRequiredDescriptionDefault
comment_depthNoMaximum depth of comment tree (default: 3)
comment_limitNoNumber of top-level comments to return (default: 10)
post_idYesID 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" }