KosmoKrator

database

QuickBase CLI for Headless Automation

Use the QuickBase CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.

6 functions 5 read 1 write Bearer token auth

QuickBase CLI for Headless Automation

Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.

Use headless automation when another tool needs a stable local command surface. 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 Headless Automation
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

FunctionTypeParametersDescription
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

Related QuickBase CLI Pages