mcp-reddit

fetch_reddit_hot_threads

Fetch hot threads from a subreddit

Args: subreddit: Name of the subreddit limit: Number of posts to fetch (default: 10)

Returns: Human readable string containing list of post information

Input Schema

NameRequiredDescriptionDefault
limitNo
subredditYes

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 10, "title": "Limit", "type": "integer" }, "subreddit": { "title": "Subreddit", "type": "string" } }, "required": [ "subreddit" ], "title": "fetch_reddit_hot_threadsArguments", "type": "object" }