graphlit-mcp-server

Official

deleteFeed

Delete a feed and all of its ingested content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Content deletion will happen asynchronously. Returns the feed identifier and feed state, i.e. Deleted.

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" }