database
QuickBase CLI for CI
Use the QuickBase CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.
6 functions 5 read 1 write Bearer token auth
QuickBase CLI for CI
Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.
Use this shape when a pipeline needs to read or update an external service. The QuickBase CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# QuickBase CLI for CI
kosmokrator integrations:configure quickbase --set access_token="$QUICKBASE_ACCESS_TOKEN" --set realm_hostname="$QUICKBASE_REALM_HOSTNAME" --enable --read allow --write ask --json
kosmo integrations:call quickbase.quickbase_list_tables '{"appId":"example_appId"}' --json Discovery Before Execution
Agents and scripts can inspect QuickBase docs and schemas before choosing a function.
kosmo integrations:docs quickbase --json
kosmo integrations:docs quickbase.quickbase_list_tables --json
kosmo integrations:schema quickbase.quickbase_list_tables --json
kosmo integrations:search "QuickBase" --json
kosmo integrations:list --json Useful QuickBase CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
quickbase.quickbase_list_tables | Read | appId | List all tables in a QuickBase application. Returns table IDs, names, and metadata for each table in the specified app. |
quickbase.quickbase_get_table | Read | tableId | Get details for a specific QuickBase table, including its name, ID, and field definitions. |
quickbase.quickbase_list_records | Read | tableId, where, select, sortBy, groupBy, options | Query records from a QuickBase table. Supports filtering by conditions, selecting specific fields, sorting, grouping, and pagination. Use the where clause to filter records (QuickBase query syntax). |
quickbase.quickbase_get_record | Read | tableId, recordId | Get a single QuickBase record by its record ID. Returns all field values for the specified record. |
quickbase.quickbase_create_record | Write | tableId, fields | Create a new record in a QuickBase table. Provide field data as an array of {fieldId, value} pairs. |
quickbase.quickbase_get_current_user | Read | none | Get the currently authenticated QuickBase user. Returns user profile information including name, email, and user ID. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.