database
QuickBase CLI for Shell Scripts
Use the QuickBase CLI for shell scripts with headless JSON commands, schema discovery, credentials, and permission controls.
6 functions 5 read 1 write Bearer token auth
QuickBase CLI for Shell Scripts
Call integration functions from shell scripts with stable JSON input and output.
Use shell scripts for small local automations that need one or more integration calls. 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 Shell Scripts
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.