reply_to_post
Add a comment to Reddit by replying to a post or existing comment. Provide the parent post or comment ID and content; returns the new comment ID.
Instructions
Post a reply to an existing post or comment. Mutating and NOT idempotent — each call adds a new comment. Requires REDDIT_USERNAME and REDDIT_PASSWORD. The parent is identified by its thing id — t3_ for a post, t1_ for a comment — so this creates both top-level and nested replies. Returns the new comment's id. Use edit_comment to change a reply you already posted. WARNING: rapid or duplicate replies may trigger Reddit's spam detection; enable REDDIT_SAFE_MODE=standard for rate limiting and duplicate detection.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Reply body text; Reddit markdown supported. | |
| post_id | Yes | Parent thing id to reply under: t3_<id> for a post (creates a top-level comment) or t1_<id> for a comment (creates a nested reply). |