# Shape

> The shape item type.

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

Send `"type": "shape"`. A primitive the editor draws; it has no MCP tool.

### Fields

- `shape` (enum<string>, required): One of `rectangle`, `rounded_rectangle`, `ellipse` or `circle`.
- `text` (string)
- `fill` (string)
- `stroke` (string)
- `textColor` (string)
- `radius` (integer)

## Example

```json
{
  "type": "shape",
  "data": {
    "shape": "rectangle",
    "text": "Interview 5 users",
    "fill": "string",
    "stroke": "string",
    "textColor": "Interview 5 users",
    "radius": 0
  }
}
```
