Graphlit MCP Server

Official
by graphlit
Verified

ingestMicrosoftTeamsMessages

Extract and ingest Microsoft Teams channel messages into a Graphlit knowledge base for search and retrieval. Specify team and channel IDs, and set a read limit for message ingestion. Executes asynchronously and returns a feed identifier.

Instructions

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" }
ID: fscrivteod