# Whiteboard frame

> Create a whiteboard WRAPPED IN a MockFlow IdeaBoard whiteboard frame (a single framed board component), for brainstorming and strategy canvases: sticky notes, sections, and named frameworks (SWOT,…

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

Send `"type": "whiteboard_frame"`.

Create a whiteboard WRAPPED IN a MockFlow IdeaBoard whiteboard frame (a single framed board component), for brainstorming and strategy canvases: sticky notes, sections, and named frameworks (SWOT, retro, empathy map, business model canvas, matrices). Differs from render_whiteboard, which drops the same content as LOOSE components on the canvas rather than inside a frame. NOT for diagrams: system/cloud architecture diagrams are render_cloudarchitecture, flowcharts/UML render_flowchart.

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

### Fields

- `title` (string): A short title shown as the frame header (e.g. "Sprint Retro Board").
- `components` (object, required): Compressed whiteboard layout with 'c' array (MF_Section, MF_Note2, MF_Text, MF_Rectangle2, MF_Circle2).
    - `c` (object[], required)

## Example

```json
{
  "type": "whiteboard_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"
        }
      ]
    }
  }
}
```
