Graphlit MCP Server

Official
by graphlit
Verified

isFeedDone

Verify completion of asynchronous feed ingestion using a unique identifier. Determines if all content for the specified feed is fully ingested, ensuring data readiness for further processing.

Instructions

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