graphlit-mcp-server

Official

addContentsToCollection

Add contents to a collection. Accepts a collection identifier and a list of content identifiers to add to collection. Returns the collection identifier.

Input Schema

NameRequiredDescriptionDefault
contentsYesContent identifiers to add to collection.
idYesCollection identifier.

Input Schema (JSON Schema)

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