quickbase_create_record
Add a new record to a specified table in QuickBase using defined field values. Simplify data entry and organization directly via the QuickBase MCP Server.
Instructions
Create a new record in a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | Yes | Field values as fieldId: {value: actualValue} pairs | |
tableId | Yes | Table ID to create record in |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"additionalProperties": true,
"description": "Field values as fieldId: {value: actualValue} pairs",
"type": "object"
},
"tableId": {
"description": "Table ID to create record in",
"type": "string"
}
},
"required": [
"tableId",
"fields"
],
"type": "object"
}