create_table
Create a new data table in your organization.
Args: name: Table name description: What the table is for columns: JSON array of {name, data_type, config, is_required}. The FIRST column becomes the primary column (the row title). Omit to get a single “Name” text column you can extend later with add_table_columns. data_type is one of: text, number, date, datetime, boolean, select, multi_select, email, url, linked_record, people, auto_number. For select / multi_select, pass the choices as config: {“options”: [{“value”: “Open”}, …]}.
Returns: The created table’s schema, same shape as get_table.
Parameters#
| Name | Type | Required | Default |
|---|---|---|---|
name | string | yes | |
description | string | no | “ |
columns | any | no |
Generated from the server tool’s docstring by generate_mcp_docs. Extend this page freely — the generator never overwrites an existing file.