get_reddit_subreddit
Retrieve posts from any Reddit subreddit by specifying the community name to access discussions, content, and engagement data.
Instructions
Get Reddit subreddit posts
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| subreddit | Yes | Subreddit name (without r/) | 
Input Schema (JSON Schema)
{
  "properties": {
    "subreddit": {
      "description": "Subreddit name (without r/)",
      "type": "string"
    }
  },
  "required": [
    "subreddit"
  ],
  "type": "object"
}