Documentation

Collections

Collections group related prompts together. Each collection has a name, description, color, and icon.

Creating a Collection

  1. Navigate to Collections in the sidebar
  2. Click New Collection
  3. Set a name, optional description, color, and icon
  4. 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_collection with prompt_id and collection_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:

  1. Select multiple prompts using checkboxes
  2. Choose Move to Collection from the bulk actions menu
  3. Select the target collection
  4. 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