Graphlit MCP Server

Official
by graphlit
Verified

createCollection

Organize and group content by creating a named collection. Add specific content identifiers to the collection for easy management and retrieval within a Graphlit MCP project.

Instructions

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