You're viewing a demo portfolio

Join the waitlist
PRSM

glim_reddit_search

Active

Tool of glim.sh

declared in 1.0.0

Search Reddit posts. Each result comes with full post content and its top comments, so a single search usually answers the question without follow-up. Compact human-readable text by default; pass format='json' for full structured data. Use glim_reddit_get(ref) for a single post's complete comment tree. Page with cursor (response gives next_cursor when more exist). See docs://reddit-search.

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "query"
  ],
  "properties": {
    "sort": {
      "enum": [
        "relevance",
        "hot",
        "top",
        "new",
        "comments"
      ],
      "type": "string",
      "default": "relevance",
      "description": "Sort order. Keep 'relevance' (default) for question or topic queries - it ranks by how well posts match your query. 'top'/'hot' rank by score/recency and largely ignore the query text, so use them only to browse what's popular in a subreddit."
    },
    "time": {
      "enum": [
        "hour",
        "day",
        "week",
        "month",
        "year",
        "all"
      ],
      "type": "string",
      "default": "all",
      "description": "Time range"
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 10,
      "minimum": 1,
      "description": "Max posts (1-10), each with full content + top comments"
    },
    "query": {
      "type": "string",
      "description": "Search query (e.g. 'subreddit:programming machine learning')"
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor from a prior 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."
    },
    "end_date": {
      "type": "string",
      "description": "Only posts before this date (YYYY-MM-DD)"
    },
    "start_date": {
      "type": "string",
      "description": "Only posts on or after this date (YYYY-MM-DD)"
    }
  }
}

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 →