graphlit-mcp-server

Official

ingestBoxFiles

Ingests files from Box folder into Graphlit knowledge base. Accepts optional Box folder identifier, and an optional read limit for the number of files to ingest. If no folder identifier provided, ingests files from root Box folder (i.e. "0"). Folder identifier can be inferred from Box URL. https://app.box.com/folder/123456 -> folder identifier is "123456". Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
folderIdNo0
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": { "default": "0", "type": "string" }, "readLimit": { "description": "Number of files to ingest, optional. Defaults to 100.", "type": "number" } }, "type": "object" }