get_subreddit
ActiveTool of Reddit
Get posts from a subreddit (e.g. "python", "news"), sorted hot (default), new, top, rising, or controversial. For "top"/"controversial" pass a time window (day/week/month/year/all) — e.g. "top posts in r/programming this week". Returns post id, title, author, permalink, date, and a body snippet. (Vote score and comment count are not available via Reddit RSS.)
Parameters schema
{
"type": "object",
"examples": [
{
"subreddit": "programming"
},
{
"limit": 25,
"subreddit": "python"
}
],
"required": [
"subreddit"
],
"properties": {
"sort": {
"type": "string",
"description": "hot (default), new, top, rising, controversial."
},
"time": {
"type": "string",
"description": "For sort=top/controversial: hour, day, week, month, year, all (default day)."
},
"limit": {
"type": "number",
"description": "Number of posts (default 10, max 100)."
},
"subreddit": {
"type": "string",
"description": "Subreddit name without r/ (e.g. \"programming\")."
}
}
}Parent server
https://github.com/pipeworx-io/mcp-reddit
1/7 registries