quickbase_bulk_create_records
Add multiple records to a specific table in QuickBase using this MCP server tool, streamlining bulk data entry for efficient database management.
Instructions
Create multiple records at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
records | Yes | Array of records to create | |
tableId | Yes | Table ID |
Input Schema (JSON Schema)
{
"properties": {
"records": {
"description": "Array of records to create",
"items": {
"properties": {
"fields": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"type": "array"
},
"tableId": {
"description": "Table ID",
"type": "string"
}
},
"required": [
"tableId",
"records"
],
"type": "object"
}