R

Knowledge Pack Files

Reddit Community Knowledge Pack Files

Browse the source files that power the Reddit Community MCP server knowledge pack.

Available free v1.0.0 Browser LLM
$ sidebutton install reddit.com
Download ZIP
reddit_get_feed.yaml
1.1 KB
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-02"
id: reddit_get_feed
title: "Get Feed"
description: "Fetch posts from a subreddit sorted by hot, new, rising, or top via browser extraction on old.reddit.com. Returns structured data: title, url, score, comments, author, and flair per post."
category:
  level: task
  domain: social
  reusable: true
policies:
  allowed_domains:
    - old.reddit.com
params:
  subreddit: string
  sort: string
steps:
  - type: browser.navigate
    url: "https://old.reddit.com/r/{{subreddit}}/{{sort}}"

  - type: browser.wait
    selector: "#siteTable > .thing.link"
    timeout: 10000

  - type: browser.extractMap
    selector: "#siteTable > .thing.link:not(.promoted)"
    fields:
      title:
        selector: ".title a.title"
      url:
        selector: ".title a.title"
        attribute: "href"
      score:
        selector: ".score.unvoted"
        attribute: "title"
      comments:
        selector: ".comments"
      author:
        selector: ".author"
      flair:
        selector: ".linkflair-text"
    as: feed

  - type: control.stop
    message: "{{feed}}"