Table
Create data tables and grids from CSV-formatted data — structured rows/columns for display (rosters, comparison tables, inventories, directories).
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
datastringrequiredCSV-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
{
"type": "table",
"data": {
"data": "string"
}
}