quickbase_create_table
Create a custom table in QuickBase by specifying a name and description using this tool. It enables structured data management within applications hosted on the QuickBase MCP Server.
Instructions
Create a new table in QuickBase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Table description | |
name | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Table description",
"type": "string"
},
"name": {
"description": "Table name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}