You're viewing a demo portfolio

Join the waitlist
PRSM

glim_reddit_get

Active

Tool of glim.sh

declared in 1.0.0

Fetch a Reddit post, subreddit, or user by ref. Posts return comments; subreddits and users return profile metadata plus recent activity.

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "ref"
  ],
  "properties": {
    "ref": {
      "type": "string",
      "description": "Post ID or URL, subreddit ref (r/programming or reddit.com/r/programming), or user ref (u/spez or reddit.com/user/spez)"
    },
    "sort": {
      "enum": [
        "hot",
        "new",
        "top",
        "rising"
      ],
      "type": "string",
      "default": "hot",
      "description": "Listing post sort"
    },
    "time": {
      "enum": [
        "hour",
        "day",
        "week",
        "month",
        "year",
        "all"
      ],
      "type": "string",
      "default": "day",
      "description": "Listing time range"
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 10,
      "minimum": 1,
      "description": "Max subreddit posts (1-10), each with full content + top comments"
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor from a prior subreddit response's next_cursor"
    },
    "format": {
      "enum": [
        "text",
        "json"
      ],
      "type": "string",
      "default": "text",
      "description": "Output format. 'text' (default): compact human-readable view, fewer tokens. 'json': full structured data for machine parsing."
    },
    "comment_sort": {
      "enum": [
        "confidence",
        "top",
        "new",
        "controversial",
        "old",
        "qa"
      ],
      "type": "string",
      "default": "confidence",
      "description": "Comment sort"
    },
    "comment_depth": {
      "type": "integer",
      "default": 5,
      "maximum": 10,
      "minimum": 0,
      "description": "Max nesting depth"
    },
    "comment_limit": {
      "type": "integer",
      "default": 50,
      "maximum": 200,
      "minimum": 0,
      "description": "Max comments"
    },
    "include_posts": {
      "type": "boolean",
      "default": true,
      "description": "Include recent posts for user refs"
    },
    "include_comments": {
      "type": "boolean",
      "default": false,
      "description": "Include recent comments for user refs"
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

glim.sh

https://github.com/glim-sh/glim-mcp

1/7 registries
View full server →