graphlit-mcp-server

Official

ingestRSS

Ingests posts from RSS feed into Graphlit knowledge base. For podcast RSS feeds, audio will be downloaded, transcribed and ingested into Graphlit knowledge base. Accepts RSS URL and an optional read limit for the number of posts to read. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
readLimitNoNumber of issues to posts, optional. Defaults to 25.
urlYes

Input Schema (JSON Schema)

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