graphlit-mcp-server

Official

deleteContents

Deletes contents from Graphlit knowledge base. Accepts optional content type and file type filters to limit the contents which will be deleted. Also accepts optional limit of how many contents to delete, defaults to 1000. Returns the content identifiers and content state, i.e. Deleted.

Input Schema

NameRequiredDescriptionDefault
contentTypeNoContent type filter, optional. One of: Email, Event, File, Issue, Message, Page, Post, Text.
fileTypeNoFile type filter, optional. One of: Animation, Audio, Code, Data, Document, Drawing, Email, Geometry, Image, Package, PointCloud, Shape, Video.
limitNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contentType": { "description": "Content type filter, optional. One of: Email, Event, File, Issue, Message, Page, Post, Text.", "enum": [ "EMAIL", "EVENT", "FILE", "ISSUE", "MESSAGE", "PAGE", "POST", "TEXT" ], "type": "string" }, "fileType": { "description": "File type filter, optional. One of: Animation, Audio, Code, Data, Document, Drawing, Email, Geometry, Image, Package, PointCloud, Shape, Video.", "enum": [ "ANIMATION", "AUDIO", "CODE", "DATA", "DOCUMENT", "DRAWING", "EMAIL", "GEOMETRY", "IMAGE", "MANIFEST", "PACKAGE", "POINT_CLOUD", "SHAPE", "UNKNOWN", "VIDEO" ], "type": "string" }, "limit": { "default": 1000, "type": "number" } }, "type": "object" }