graphlit-mcp-server

Official

createCollection

Create a collection. Accepts a collection name, and optional list of content identifiers to add to collection. Returns the collection identifier

Input Schema

NameRequiredDescriptionDefault
contentsNoContent identifiers to add to collection, optional.
nameYesCollection name.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contents": { "description": "Content identifiers to add to collection, optional.", "items": { "type": "string" }, "type": "array" }, "name": { "description": "Collection name.", "type": "string" } }, "required": [ "name" ], "type": "object" }