# Table

> Create data tables and grids from CSV-formatted data — structured rows/columns for display (rosters, comparison tables, inventories, directories).

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

Send `"type": "table"`.

Create data tables and grids from CSV-formatted data — structured rows/columns for display (rosters, comparison tables, inventories, directories). NOT for spreadsheets needing formulas or calculations (use render_spreadsheet); NOT for strategy/brainstorming matrices like RACI, Eisenhower, BCG, Ansoff, priority or segmentation matrices (use render_whiteboard).

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

### Fields

- `data` (string, required): CSV-formatted data. First row is headers, subsequent rows are data. Use placeholder values for details the user did not provide. Example: "Name,Email,Phone\nGuest 1,person1@example.com,555-0100"

## Example

```json
{
  "type": "table",
  "data": {
    "data": "string"
  }
}
```
