graphlit-mcp-server

Official

isContentDone

Check if content has completed asynchronous ingestion. Accepts a content identifier which was returned from one of the non-feed ingestion tools, like ingestUrl. Returns whether the content is done or not.

Input Schema

NameRequiredDescriptionDefault
idYesContent identifier.

Input Schema (JSON Schema)

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