Graphlit MCP Server

Official
by graphlit
Verified

ingestDiscordMessages

Ingest messages from a Discord channel into a knowledge base, specifying the channel name and optional read limit. Executes asynchronously and returns the feed identifier for easy retrieval.

Instructions

Ingests messages from Discord channel into Graphlit knowledge base. Accepts Discord channel name and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
channelNameYes
readLimitNoNumber of messages to ingest, optional. Defaults to 100.

Input Schema (JSON Schema)

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