Graphlit MCP Server

Official
by graphlit
Verified

addContentsToCollection

Insert content identifiers into a specified collection on the Graphlit MCP Server. Use this tool to organize and manage content within collections for efficient retrieval and knowledge management.

Instructions

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