invokeai_boards
Manage InvokeAI image boards by listing, creating, updating, deleting, and assigning images to keep your generated artwork organized.
Instructions
Manage boards (collections of generated images).
[RATIONALE] Boards are the primary organization surface of the InvokeAI gallery; all board operations share one record store and one portmanteau.
Return Format
{"success": bool, "operation": str, "data": {...}, "message": str}
Examples
invokeai_boards(operation="list") invokeai_boards(operation="create", board_name="Concept art") invokeai_boards(operation="add_image", board_id="board-uuid", image_names=["abc123.png"])
Notes:
Board ids come from invokeai_boards(operation='list').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | No | Board id (required for get, update, delete, add_image, remove_image). | |
| operation | Yes | Board operation to perform. | |
| board_name | No | Board name (required for create, update). | |
| image_names | No | Image names to assign/remove (add_image, remove_image). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||