graphlit-mcp-server

Official

ingestMicrosoftTeamsMessages

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

Input Schema

NameRequiredDescriptionDefault
channelIdYes
readLimitNoNumber of messages to ingest, optional. Defaults to 100.
teamIdYes

Input Schema (JSON Schema)

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