MCP Outline Server

by Vortiago
Verified

update_collection

Modifies an existing collection's properties. Use this tool when you need to: - Rename a collection - Update a collection's description - Change a collection's color coding - Refresh collection metadata Args: collection_id: The collection ID to update name: Optional new name for the collection description: Optional new description color: Optional new hex color code (e.g. #FF0000) Returns: Result message confirming update

Input Schema

NameRequiredDescriptionDefault
collection_idYes
colorNo
descriptionNo
nameNo

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "title": "Collection Id", "type": "string" }, "color": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Color" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Description" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Name" } }, "required": [ "collection_id" ], "title": "update_collectionArguments", "type": "object" }
ID: yejga73oe8