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_check_replies.yaml
1.0 KB
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-02"
id: reddit_check_replies
title: "Check Replies"
description: "Check inbox for comment replies. Navigates to old.reddit.com/message/comments/ and extracts recent replies including author, body, parent thread link, and timestamp. Requires an active Reddit login session."
category:
  level: task
  domain: social
  reusable: true
policies:
  allowed_domains:
    - old.reddit.com
steps:
  - type: browser.navigate
    url: "https://old.reddit.com/message/comments/"

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

  - type: browser.extractMap
    selector: "#siteTable .thing"
    fields:
      author:
        selector: ".tagline .author"
      subject:
        selector: ".subject a.title"
      parent_link:
        selector: ".subject a.title"
        attribute: "href"
      time:
        selector: ".tagline time"
        attribute: "title"
      body:
        selector: ".md"
    as: replies

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