Graphlit MCP Server

Official
by graphlit
Verified

ingestRedditPosts

Extract and ingest Reddit posts from specified subreddits into the Graphlit knowledge base. Specify a subreddit name and optional read limit to control the number of posts processed. Performs asynchronously and returns the feed identifier.

Instructions

Ingests posts from Reddit subreddit into Graphlit knowledge base. Accepts a subreddit name and an optional read limit for the number of posts to ingest. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
readLimitNoNumber of posts to ingest, optional. Defaults to 100.
subredditNameYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "readLimit": { "description": "Number of posts to ingest, optional. Defaults to 100.", "type": "number" }, "subredditName": { "type": "string" } }, "required": [ "subredditName" ], "type": "object" }
ID: fscrivteod