MCP Server Reddit

get_post_comments

Get comments from a post

Input Schema

NameRequiredDescriptionDefault
limitNoNumber of comments to return (default: 10)
post_idYesID of the post

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 10, "description": "Number of 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" }