graphlit-mcp-server

Official

isFeedDone

Check if an asynchronous feed has completed ingesting all the available content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Returns whether the feed is done or not.

Input Schema

NameRequiredDescriptionDefault
idYesFeed identifier.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "description": "Feed identifier.", "type": "string" } }, "required": [ "id" ], "type": "object" }