# Mood frame

> Create a mood/inspiration board inside a MockFlow IdeaBoard mood frame: color palette swatches, typography specimens, keyword/mood text tiles, and photographic image tiles.

Source: https://mockflow.com/developers/reference/item-types/mood-frame

Send `"type": "mood_frame"`.

Create a mood/inspiration board inside a MockFlow IdeaBoard mood frame: color palette swatches, typography specimens, keyword/mood text tiles, and photographic image tiles. NOT a way to make a picture: this composes a whole board of swatches, type and tiles, so "an image/photo of X" is render_image, not this tool, even though a moodboard can contain imagery.

Also available as the MCP tool `render_moodframe`. The same payload works through either surface.

### Fields

- `title` (string): A short title shown as the frame header (e.g. "Brand Mood Board").
- `components` (object, required): Compressed moodboard layout with 'c' array (MF_Rectangle2/MF_Section color swatches, MF_Text specimens/keywords, and MF_ImageComp photo tiles when images were requested).
    - `c` (object[], required)

## Example

```json
{
  "type": "mood_frame",
  "data": {
    "title": "Q4 Launch Planning",
    "components": {
      "c": [
        {
          "t": "string",
          "x": 0,
          "y": 0,
          "w": 0,
          "h": 0,
          "a": 0,
          "e": "string",
          "tx": "string",
          "ta": "left",
          "fs": 0,
          "fcl": "string",
          "fw": "normal"
        }
      ]
    }
  }
}
```
