graphlit-mcp-server

Official

ingestSharePointFiles

Ingests files from SharePoint library into Graphlit knowledge base. Accepts a SharePoint libraryId and an optional folderId to ingest files from a specific SharePoint folder. Libraries can be enumerated with listSharePointLibraries and library folders with listSharePointFolders. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
folderIdNo
libraryIdYes
readLimitNoNumber of files to ingest, optional. Defaults to 100.

Input Schema (JSON Schema)

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