Create a gallery
create_galleryCreate a named gallery to store ordered image URLs, auto-deriving a unique slug and allowing up to 200 items with optional alt text.
Instructions
Create a new gallery (named, ordered collection of image URLs). Slug is auto-derived from name when omitted. If the derived slug exists, -2, -3, ... is appended. Items are optional at create time — start empty and add via update_gallery. Max 200 items per gallery; each item is {url, alt?}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Human-readable name, e.g. 'Home carousel'. | |
| slug | No | Optional explicit slug, lowercase a-z/0-9/hyphen. Omit to auto-derive from name. | |
| items | No | Optional initial items (max 200). |