Collections
Collections group related prompts together. Each collection has a name, description, color, and icon.
Creating a Collection
- Navigate to Collections in the sidebar
- Click New Collection
- Set a name, optional description, color, and icon
- Click Create
Or via MCP:
{
"tool": "create_collection",
"arguments": {
"name": "Code Reviews",
"description": "Prompts for reviewing code",
"color": "cyan",
"icon": "code"
}
}
Collection Properties
| Property | Type | Default | Description |
|---|---|---|---|
name |
string | (required) | Collection name |
description |
string | "" |
Description |
icon |
string | "folder" |
Icon identifier |
color |
string | "gray" |
Color theme |
is_public |
boolean | false |
Public visibility |
sort_order |
integer | 0 |
Display order |
Available Colors
gray, red, orange, yellow, green, cyan, blue, purple, pink
Assigning Prompts
Assign a prompt to a collection when creating or editing it, or via bulk operations:
- Single prompt: Edit the prompt and select a collection
- Bulk assign: Select multiple prompts on the list page, choose “Move to Collection”
- MCP: Use
assign_prompt_to_collectionwithprompt_idandcollection_id
To remove a prompt from a collection, set collection_id to an empty string.
Public Collections
When a collection is public (is_public = true):
- It’s visible at
/c/{id} - Only public prompts within the collection are shown
- Templates and remixes are excluded from the public view count
Bulk Operations
From the prompts list, you can:
- Select multiple prompts using checkboxes
- Choose Move to Collection from the bulk actions menu
- Select the target collection
- All selected prompts are moved at once
MCP Tools
| Tool | Description |
|---|---|
list_collections |
List all collections (with optional prompt counts) |
create_collection |
Create a new collection |
get_collection |
Get collection details (with optional prompt list) |
update_collection |
Update collection properties |
delete_collection |
Delete a collection (prompts become uncategorized) |
assign_prompt_to_collection |
Move a prompt to/from a collection |