graphlit-mcp-server

Official

ingestRedditPosts

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" }