update_collection
Modify an existing collection’s properties, including name, description, color coding, and metadata, within the MCP Outline Server. Input the collection ID and optional updates to refresh its details efficiently.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
color | No | ||
description | No | ||
name | No |
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"
}