graphlit-mcp-server

Official

ingestDropboxFiles

Ingests files from Dropbox folder into Graphlit knowledge base. Accepts optional relative path to Dropbox folder (i.e. /Pictures), and an optional read limit for the number of files to ingest. If no path provided, ingests files from root Dropbox folder. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
pathNo
readLimitNoNumber of files to ingest, optional. Defaults to 100.

Input Schema (JSON Schema)

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