Graphlit MCP Server

Official
by graphlit
Verified

deleteFeed

Remove a feed and its ingested content from the Graphlit MCP Server using a feed identifier. Content deletion occurs asynchronously, returning the feed identifier and deletion status.

Instructions

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